diff options
author | Stephen Hines <srhines@google.com> | 2015-04-01 18:49:24 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-01 18:49:26 +0000 |
commit | 3fa16bd6062e23bcdb82ed4dd965674792e6b761 (patch) | |
tree | 9348fc507292f7e8715d22d64ce5a32131b4f875 /test/FileCheck/same.txt | |
parent | beed47390a60f6f0c77532b3d3f76bb47ef49423 (diff) | |
parent | ebe69fe11e48d322045d5949c83283927a0d790b (diff) | |
download | external_llvm-3fa16bd6062e23bcdb82ed4dd965674792e6b761.zip external_llvm-3fa16bd6062e23bcdb82ed4dd965674792e6b761.tar.gz external_llvm-3fa16bd6062e23bcdb82ed4dd965674792e6b761.tar.bz2 |
Merge "Update aosp/master LLVM for rebase to r230699."
Diffstat (limited to 'test/FileCheck/same.txt')
-rw-r--r-- | test/FileCheck/same.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/FileCheck/same.txt b/test/FileCheck/same.txt new file mode 100644 index 0000000..7160936 --- /dev/null +++ b/test/FileCheck/same.txt @@ -0,0 +1,23 @@ +foo bat bar +baz + +RUN: FileCheck --input-file=%s --check-prefix=PASS1 %s +PASS1: foo +PASS1-SAME: bat +PASS1-SAME: bar +PASS1-NEXT: baz + +RUN: FileCheck --input-file=%s --check-prefix=PASS2 %s +PASS2: foo +PASS2-NOT: baz +PASS2-SAME: bar +PASS2-NEXT: baz + +RUN: not FileCheck --input-file=%s --check-prefix=FAIL1 %s +FAIL1: foo +FAIL1-SAME: baz + +RUN: not FileCheck --input-file=%s --check-prefix=FAIL2 %s +FAIL2: foo +FAIL2-NOT: bat +FAIL2-SAME: bar |