Lines Matching full:test
6 test.cc: gen.cc
8 ./gen >test.cc
10 test-gcc.sum: test.cc
11 time $(GXX) test.cc -o test-gcc.s -S
12 $(GXX) test-gcc.s -o test-gcc
13 ./test-gcc >test-gcc.sum
15 test-clang.sum: test.cc
16 time $(CLANGXX) test.cc -o test-clang.s -S
17 $(CLANGXX) test-clang.s -o test-clang
18 ./test-clang >test-clang.sum
20 one: test-gcc.sum test-clang.sum
21 cmp test-gcc.sum test-clang.sum
24 rm -f gen test-gcc test-clang test.cc test-gcc.sum test-clang.sum test-gcc.s test-clang.s