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

Side by Side Diff: crosstest/crosstest.cfg

Issue 2013863002: Subzero: Crosstest test_arith properly tests i8/i16. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Use a python script to auto-generate .ll tests Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « Makefile.standalone ('k') | crosstest/test_arith.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [simple_loop] 1 [simple_loop]
2 driver: simple_loop_main.c 2 driver: simple_loop_main.c
3 test: simple_loop.c 3 test: simple_loop.c
4 4
5 [mem_intrin] 5 [mem_intrin]
6 driver: mem_intrin_main.cpp 6 driver: mem_intrin_main.cpp
7 test: mem_intrin.cpp 7 test: mem_intrin.cpp
8 flags: --sz=-fmem-intrin-opt 8 flags: --sz=-fmem-intrin-opt
9 9
10 [test_arith] 10 [test_arith]
11 driver: test_arith_main.cpp 11 driver: test_arith_main.cpp
12 test: test_arith.cpp test_arith_frem.ll test_arith_sqrt.ll test_arith_fabs.ll 12 # Note: Originally test_arith.cpp was used to generate the bulk of the tests.
13 # However, the C++ integral promotion rules mean that most of the time i8 and
14 # i16 operations are not actually tested; instead, they are extended to i32 and
15 # only the i32 operation is tested. To help fix this, the relevant parts of
16 # test_arith.cpp are commented out, and instead a python script auto-generates
17 # test_arith_ll.ll which contains the proper functionality.
18 #test: test_arith.cpp test_arith_frem.ll test_arith_sqrt.ll test_arith_fabs.ll
19 test: test_arith_ll.ll test_arith.cpp test_arith_sqrt.ll test_arith_fabs.ll
13 20
14 [test_bitmanip] 21 [test_bitmanip]
15 driver: test_bitmanip_main.cpp 22 driver: test_bitmanip_main.cpp
16 test: test_bitmanip.cpp test_bitmanip_intrin.ll 23 test: test_bitmanip.cpp test_bitmanip_intrin.ll
17 24
18 [test_calling_conv] 25 [test_calling_conv]
19 driver: test_calling_conv_main.cpp 26 driver: test_calling_conv_main.cpp
20 test: test_calling_conv.cpp 27 test: test_calling_conv.cpp
21 28
22 [test_cast] 29 [test_cast]
(...skipping 27 matching lines...) Expand all
50 # bitcode patterns. 57 # bitcode patterns.
51 flags: --clang-opt=0 58 flags: --clang-opt=0
52 59
53 [test_sync_atomic] 60 [test_sync_atomic]
54 driver: test_sync_atomic_main.cpp 61 driver: test_sync_atomic_main.cpp
55 test: test_sync_atomic.cpp 62 test: test_sync_atomic.cpp
56 63
57 [test_vector_ops] 64 [test_vector_ops]
58 driver: test_vector_ops_main.cpp 65 driver: test_vector_ops_main.cpp
59 test: test_vector_ops.cpp test_vector_ops_ll.ll 66 test: test_vector_ops.cpp test_vector_ops_ll.ll
OLDNEW
« no previous file with comments | « Makefile.standalone ('k') | crosstest/test_arith.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698