Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: tests_lit/parse_errs/nacl-fake-intrinsic.ll

Issue 1579203002: Fix bitcode parser to check type signatures of functions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Commit patch. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests_lit/parse_errs/fcn-bad-param-type.ll ('k') | tests_lit/reader_tests/compare.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/parse_errs/nacl-fake-intrinsic.ll
diff --git a/tests_lit/parse_errs/nacl-fake-intrinsic.ll b/tests_lit/parse_errs/nacl-fake-intrinsic.ll
index cef88d7e04a2239439b2e570e6996db56648815e..f1e066c348b624d087e5d9cd699e2eb674533bd0 100644
--- a/tests_lit/parse_errs/nacl-fake-intrinsic.ll
+++ b/tests_lit/parse_errs/nacl-fake-intrinsic.ll
@@ -1,34 +1,11 @@
; Tests that we don't get fooled by a fake NaCl intrinsic.
-; TODO(kschimpf) Find way to run this through p2i. Note: Can't do this
-; currently because run-pnacl-sz.py raises exception on error,
-; and output is lost.
-; RUN: %if --need=allow_dump --command llvm-as < %s \
-; RUN: | %if --need=allow_dump --command pnacl-freeze \
-; RUN -allow-local-symbol-tables \
-; RUN: | %if --need=allow_dump --command not %pnacl_sz -notranslate \
-; RUN: -verbose=inst -build-on-read \
-; RUN: -allow-pnacl-reader-error-recovery \
-; RUN: -allow-local-symbol-tables \
-; RUN: -filetype=obj -o /dev/null \
-; RUN: | %if --need=allow_dump --command FileCheck %s
+; REQUIRES: allow_dump
-; RUN: %if --need=no_dump --command llvm-as < %s \
-; RUN: | %if --need=no_dump --command pnacl-freeze \
-; RUN -allow-local-symbol-tables \
-; RUN: | %if --need=no_dump --command not %pnacl_sz -notranslate \
-; RUN: -verbose=inst -build-on-read \
-; RUN: -allow-pnacl-reader-error-recovery \
-; RUN: -allow-local-symbol-tables \
-; RUN: -filetype=obj -o /dev/null \
-; RUN: | %if --need=no_dump --command FileCheck %s --check-prefix=MIN
+; RUN: %p2i --expect-fail -i %s --insts --args \
+; RUN: -verbose=inst -allow-externally-defined-symbols \
+; RUN: | FileCheck %s
declare i32 @llvm.fake.i32(i32)
-define i32 @testFake(i32 %v) {
- %r = call i32 @llvm.fake.i32(i32 %v)
- ret i32 %r
-}
-
-; CHECK: Error({{.*}}): Invalid PNaCl intrinsic call to llvm.fake.i32
-; MIN: Error({{.*}}): Invalid function record: <34 0 3 1>
+; CHECK: Error({{.*}}): Invalid intrinsic name: llvm.fake.i32
« no previous file with comments | « tests_lit/parse_errs/fcn-bad-param-type.ll ('k') | tests_lit/reader_tests/compare.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698