ulimit -s 65536
make -k check 2>&1 | tee ../../logs/checklog.gcc
ulimit -s 65536
make -k check 2>&1 | tee ../../logs/checklog.gcc
テストが終了したら、ログファイルに出力された内容を参照し、正常に終了したことを確認します。
grep '^# of' ../../logs/checklog.gcc \
| sed \
-e '/# of expected passes/s/^/OK /' \
-e '/# of unexpected passes/s/^/OK /' \
-e '/# of expected failures/s/^/OK /' \
-e '/# of unexpected successes/s/^/OK /' \
-e '/# of unsupported tests/s/^/OK /' \
-e '/# of untested testcases/s/^/OK /' \
-e '/$^/d' \
| sed \
-e '/^# of/s/^/NG /' \
| sort
grep '^# of' ../../logs/checklog.gcc \
| sed \
-e '/# of expected passes/s/^/OK /' \
-e '/# of unexpected passes/s/^/OK /' \
-e '/# of expected failures/s/^/OK /' \
-e '/# of unexpected successes/s/^/OK /' \
-e '/# of unsupported tests/s/^/OK /' \
-e '/# of untested testcases/s/^/OK /' \
-e '/$^/d' \
| sed \
-e '/^# of/s/^/NG /' \
| sort
上記の結果、全ての行の行頭が "OK" となっていれば問題ありません。
なお、筆者の環境(仮想マシン)では以下のように30件のエラーが発生します。
NG # of unexpected failures 12
NG # of unexpected failures 16
NG # of unexpected failures 2
OK # of expected failures 249
OK # of expected failures 3
OK # of expected failures 41
OK # of expected failures 443
OK # of expected passes 105573
OK # of expected passes 26
OK # of expected passes 44
OK # of expected passes 691
OK # of expected passes 87019
OK # of expected passes 9843
OK # of unexpected successes 2
OK # of unsupported tests 1
OK # of unsupported tests 1205
OK # of unsupported tests 274
OK # of unsupported tests 2798
OK # of unsupported tests 5
エラーが発生した場合は、以下を実行してどのテストでエラーが発生したのかを調べます。
grep '^FAIL' ../../logs/checklog.gcc
grep '^FAIL' ../../logs/checklog.gcc
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -g execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -g execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O1 execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O1 execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O2 -std=c99 execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O2 -std=c99 execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O2 -ftree-vectorize execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O2 -ftree-vectorize execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O3 -g execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O3 -g execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O3 -flto -g execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O3 -flto -g execution test
FAIL: g++.dg/asan/asan_test.C -O2 AddressSanitizer_HugeMallocTest Ident((char*)malloc(size))[-1] = 0 output pattern test
FAIL: g++.dg/cilk-plus/CK/catch_exc.cc -O1 -fcilkplus execution test
FAIL: g++.dg/cilk-plus/CK/catch_exc.cc -O3 -fcilkplus execution test
FAIL: g++.dg/cilk-plus/CK/catch_exc.cc -g -fcilkplus execution test
FAIL: g++.dg/cilk-plus/CK/catch_exc.cc -g -O2 -fcilkplus execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O1 execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O1 execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O3 execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O3 execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -g execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -g execution test
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -g -O2 execution test
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -g -O2 execution test
FAIL: g++.dg/ipa/pr61160-3.C -std=gnu++98 execution test
FAIL: g++.dg/ipa/pr61160-3.C -std=gnu++11 execution test
FAIL: g++.dg/ipa/pr61160-3.C -std=gnu++1y execution test
FAIL: libgomp.c/omp-loop03.c execution test
FAIL: libgomp.c++/loop-3.C execution test
...(省略)...
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -g execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -g execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O1 execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O1 execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O2 -std=c99 execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O2 -std=c99 execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O2 -ftree-vectorize execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O2 -ftree-vectorize execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O3 -g execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O3 -g execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/spawning_arg.c -O3 -flto -g execution test
WARNING: program timed out.
FAIL: c-c++-common/cilk-plus/CK/steal_check.c -O3 -flto -g execution test
...(省略)...
attempt to open /usr/lib/gcc/i686-pc-linux-gnu/4.9.2/../../../crt1.o succeeded
attempt to open /usr/lib/gcc/i686-pc-linux-gnu/4.9.2/../../../crti.o succeeded
attempt to open /usr/lib/gcc/i686-pc-linux-gnu/4.9.2/../../../crtn.o succeeded