Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PPC] fix two unit tests in FWCore/MessageService #32082

Merged
merged 1 commit into from Nov 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions FWCore/MessageService/test/u2.sh
Expand Up @@ -10,8 +10,9 @@ status=0
rm -f u2_warnings.log u2_cerr.mout

cmsRun -p $LOCAL_TEST_DIR/u2_cfg.py 2> $LOCAL_TMP_DIR/u2_cerr.mout || exit $?

for file in u2_warnings.log u2_cerr.mout
sed -n '/Disabling gnu++: clang has no __float128 support on this target!/!p' u2_cerr.mout > tmpf && mv tmpf u2_cerr.mout # remove clang output

for file in u2_warnings.log u2_cerr.mout
do
sed $SED_OPT -f $LOCAL_TEST_DIR/filter-timestamps.sed $file
diff $LOCAL_TEST_DIR/unit_test_outputs/$file $LOCAL_TMP_DIR/$file
Expand Down
3 changes: 2 additions & 1 deletion FWCore/MessageService/test/u20.sh
Expand Up @@ -10,7 +10,8 @@ status=0
rm -f u20_cerr.log FrameworkJobReport.xml

cmsRun -e -p $LOCAL_TEST_DIR/u20_cfg.py 2> u20_cerr.log || exit $?

sed -n '/Disabling gnu++: clang has no __float128 support on this target!/!p' u20_cerr.log > tmpf && mv tmpf u20_cerr.log # remove clang output

for file in u20_cerr.log FrameworkJobReport.xml
do
sed $SED_OPT -f $LOCAL_TEST_DIR/filter-timestamps.sed $file
Expand Down