beyondlinuxfromscratch:ninjatesttimeout

meson test --timeout-multiplier=10 -C _build

ninja test로 타임 아웃이 발생
동일한 테스트인 meson test에 타임아웃 관련 옵션을 실행 해서 성공

cd ~/pixman-0.43.2 $ 
ninja test -C _build
ninja: Entering directory `_build'
[0/1] Running all tests.
 1/33 oob-test                      OK               0.02s
 2/33 infinite-loop                 OK               0.01s
 3/33 trap-crasher                  OK               0.02s
 4/33 region-translate-test         OK               0.01s
 5/33 fence-image-self-test         OK               0.04s
 6/33 fetch-test                    OK               0.02s
 7/33 a1-trap-test                  OK               0.02s
 8/33 prng-test                     OK               0.02s
 9/33 radial-invalid                OK               0.02s
10/33 pdf-op-test                   OK               0.03s
11/33 region-test                   OK               0.04s
12/33 combiner-test                 OK               0.04s
13/33 alpha-loop                    OK               0.04s
14/33 scaling-helpers-test          OK               0.21s
15/33 rotate-test                   OK               0.59s
16/33 scaling-crash-test            OK               1.78s
17/33 gradient-crash-test           OK               0.70s
18/33 pixel-test                    OK               3.18s
19/33 alphamap                      OK               7.43s
20/33 matrix-test                   OK               6.96s
21/33 filter-reduction-test         OK               7.60s
22/33 composite-traps-test          OK              10.14s
23/33 glyph-test                    OK              16.62s
24/33 region-contains-test          OK              27.43s
25/33 solid-test                    OK              23.74s
26/33 stress-test                   OK              39.22s
27/33 cover-test                    OK              52.74s
28/33 blitters-test                 OK              33.55s
29/33 affine-test                   OK              52.52s
30/33 scaling-test                  OK              64.21s
composite time out (After 120 seconds)
31/33 composite                     TIMEOUT        120.01s   killed by signal 15 SIGTERM
>>> MALLOC_PERTURB_=100 UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 LD_LIBRARY_PATH=/home/baecy/pixman-0.43.2/_build/pixman /home/baecy/pixman-0.43.2/_build/test/composite

32/33 thread-test                   OK               0.83s
tolerance-test time out (After 120 seconds)
33/33 tolerance-test                TIMEOUT        120.01s   killed by signal 15 SIGTERM
>>> UBSAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1:print_stacktrace=1 MALLOC_PERTURB_=198 ASAN_OPTIONS=halt_on_error=1:abort_on_error=1:print_summary=1 LD_LIBRARY_PATH=/home/baecy/pixman-0.43.2/_build/pixman /home/baecy/pixman-0.43.2/_build/test/tolerance-test


Summary of Failures:

31/33 composite             TIMEOUT        120.01s   killed by signal 15 SIGTERM
33/33 tolerance-test        TIMEOUT        120.01s   killed by signal 15 SIGTERM

Ok:                 31  
Expected Fail:      0   
Fail:               0   
Unexpected Pass:    0   
Skipped:            0   
Timeout:            2   

Full log written to /home/baecy/pixman-0.43.2/_build/meson-logs/testlog.txt

--timeout-multiplier=10 옵션 적용 후

cd ~/pixman-0.43.2 $ 
meson test --timeout-multiplier=10 -C _build
ninja: Entering directory `/home/baecy/pixman-0.43.2/_build'
ninja: no work to do.
 1/33 oob-test                      OK                0.02s
 2/33 infinite-loop                 OK                0.01s
 3/33 trap-crasher                  OK                0.02s
 4/33 region-translate-test         OK                0.01s
 5/33 fence-image-self-test         OK                0.03s
 6/33 fetch-test                    OK                0.02s
 7/33 a1-trap-test                  OK                0.02s
 8/33 prng-test                     OK                0.02s
 9/33 radial-invalid                OK                0.02s
10/33 pdf-op-test                   OK                0.03s
11/33 region-test                   OK                0.04s
12/33 combiner-test                 OK                0.04s
13/33 alpha-loop                    OK                0.04s
14/33 scaling-helpers-test          OK                0.21s
15/33 rotate-test                   OK                0.61s
16/33 scaling-crash-test            OK                1.82s
17/33 gradient-crash-test           OK                0.69s
18/33 pixel-test                    OK                3.18s
19/33 alphamap                      OK                7.46s
20/33 matrix-test                   OK                6.96s
21/33 filter-reduction-test         OK                7.74s
22/33 composite-traps-test          OK                8.76s
23/33 glyph-test                    OK               17.21s
24/33 region-contains-test          OK               27.17s
25/33 solid-test                    OK               23.68s
26/33 stress-test                   OK               39.27s
27/33 cover-test                    OK               52.69s
28/33 blitters-test                 OK               33.85s
29/33 affine-test                   OK               51.18s
30/33 scaling-test                  OK               63.24s
31/33 tolerance-test                OK              158.06s
32/33 thread-test                   OK                0.76s
33/33 composite                     OK              172.36s

Ok:                 33  
Expected Fail:      0   
Fail:               0   
Unexpected Pass:    0   
Skipped:            0   
Timeout:            0   

Full log written to /home/baecy/pixman-0.43.2/_build/meson-logs/testlog.txt

  • beyondlinuxfromscratch/ninjatesttimeout.txt
  • 마지막으로 수정됨: 2024/04/14 07:32
  • 저자 baecy