chore(travis): do not use c++filt on Linux builds
There is a bug in c++filt on Linux. For instance, c++filt -t 355687428096000 causes a segmentation fault.
This commit is contained in:
parent
3c8dff9085
commit
80c282d0a3
1 changed files with 2 additions and 3 deletions
|
@ -190,7 +190,7 @@ script:
|
|||
sed -i "s/^Site:.*/Site:$SITE/" $CONFIG_FILE;
|
||||
sed -i "s/BuildName:.*/BuildName:$BUILD_NAME/" $CONFIG_FILE;
|
||||
ctest -D ExperimentalBuild -VV;
|
||||
yes "C" | ctest -D ExperimentalTest -VV | c++filt --types;
|
||||
yes "C" | ctest -D ExperimentalTest -VV;
|
||||
fi;
|
||||
fi
|
||||
- cd ..
|
||||
|
@ -205,7 +205,7 @@ after_script:
|
|||
CONFIG_FILE=DartConfiguration.tcl;
|
||||
sed -i "s,^MemoryCheckSuppressionFile:\W*$,MemoryCheckSuppressionFile:$MEMCHECK_SUPP," $CONFIG_FILE;
|
||||
ulimit -s unlimited;
|
||||
yes "C" | ctest -D ExperimentalMemCheck -VV | c++filt --types;
|
||||
yes "C" | ctest -D ExperimentalMemCheck -VV;
|
||||
fi
|
||||
- if [[ $LEANREPO == BLESSED && $PUSH_TO_CDASH == TRUE ]]; then
|
||||
GIT_COMMIT=`git log --oneline -n 1 | cut -d ' ' -f 1`;
|
||||
|
@ -214,7 +214,6 @@ after_script:
|
|||
GIT_SUBJECT=${GIT_SUBJECT//,/\,};
|
||||
GIT_SUBJECT=$(echo -e $(printf '%q' "$GIT_SUBJECT"));
|
||||
find Testing -name "*.xml" -exec sed -i "s,Generator=\".*\",Generator=\"${GIT_COMMIT}###${GIT_SUBJECT}\"," {} ";";
|
||||
find Testing \( -name "LastTest_*.log" -o -name "LastDynamicAnalysis_*.log" \) -exec sh -c 'TMP=`mktemp /tmp/ctesttmp_XXXX`; cat {} | c++filt --types > $TMP; mv -v $TMP {}' ";";
|
||||
ctest -D ExperimentalSubmit;
|
||||
fi
|
||||
- cd ..
|
||||
|
|
Loading…
Reference in a new issue