File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ mkdir -p "$2"
22
22
OUT=$( realpath " $1 " )
23
23
MNT=$( realpath " $2 " )
24
24
25
- rm -v $OUT /* .log
26
- rm -v $OUT /* .exit
27
- rm -v $OUT /* .md
25
+ rm -fv $OUT /* .log
26
+ rm -fv $OUT /* .exit
27
+ rm -fv $OUT /* .md
28
28
29
29
sd=` dirname $0 `
30
30
cd $sd /../
@@ -84,7 +84,7 @@ function gg_run_ctest_debug {
84
84
(time cmake -DCMAKE_BUILD_TYPE=Debug .. ) 2>&1 | tee -a $OUT /${ci} -cmake.log
85
85
(time make -j ) 2>&1 | tee -a $OUT /${ci} -make.log
86
86
87
- (time ctest --output-on-failure -E test-opt ) 2>&1 | tee -a $OUT /${ci} -ctest.log
87
+ (time ctest --output-on-failure -L main - E test-opt ) 2>&1 | tee -a $OUT /${ci} -ctest.log
88
88
89
89
set +e
90
90
}
@@ -113,9 +113,9 @@ function gg_run_ctest_release {
113
113
(time make -j ) 2>&1 | tee -a $OUT /${ci} -make.log
114
114
115
115
if [ -z ${GG_BUILD_LOW_PERF} ]; then
116
- (time ctest --output-on-failure ) 2>&1 | tee -a $OUT /${ci} -ctest.log
116
+ (time ctest --output-on-failure -L main ) 2>&1 | tee -a $OUT /${ci} -ctest.log
117
117
else
118
- (time ctest --output-on-failure -E test-opt ) 2>&1 | tee -a $OUT /${ci} -ctest.log
118
+ (time ctest --output-on-failure -L main - E test-opt ) 2>&1 | tee -a $OUT /${ci} -ctest.log
119
119
fi
120
120
121
121
set +e
You can’t perform that action at this time.
0 commit comments