[PATCH] D50811: [ASTImporter] Add test for WhileStmt

Raphael Isemann via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 15 14:32:41 PDT 2018


teemperor created this revision.
Herald added a subscriber: martong.
Herald added a reviewer: a.sidorin.

Repository:
  rC Clang

https://reviews.llvm.org/D50811

Files:
  test/Import/while-stmt/Inputs/F.cpp
  test/Import/while-stmt/test.cpp


Index: test/Import/while-stmt/test.cpp
===================================================================
--- /dev/null
+++ test/Import/while-stmt/test.cpp
@@ -0,0 +1,23 @@
+// RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s
+
+// CHECK: WhileStmt
+// CHECK-NEXT: <<NULL>>
+// CHECK-NEXT: CXXBoolLiteralExpr
+// CHECK-NEXT: NullStmt
+
+// CHECK: WhileStmt
+// CHECK-NEXT: <<NULL>>
+// CHECK-NEXT: CXXBoolLiteralExpr
+// CHECK-NEXT: CompoundStmt
+
+// CHECK: WhileStmt
+// CHECK-NEXT: DeclStmt
+// CHECK-NEXT: VarDecl
+// CHECK-NEXT: CXXBoolLiteralExpr
+// CHECK-NEXT: ImplicitCastExpr
+// CHECK-NEXT: DeclRefExpr
+// CHECK-NEXT: NullStmt
+
+void expr() {
+  f();
+}
Index: test/Import/while-stmt/Inputs/F.cpp
===================================================================
--- /dev/null
+++ test/Import/while-stmt/Inputs/F.cpp
@@ -0,0 +1,8 @@
+void f() {
+  while (false)
+    ;
+  while (false) {
+  }
+  while (bool ini = true)
+    ;
+}


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50811.160919.patch
Type: text/x-patch
Size: 984 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180815/53da2f80/attachment.bin>


More information about the cfe-commits mailing list