Repository: flink Updated Branches: refs/heads/master 32e5194d9 -> d139e6340
[hotfix] let end-to-end tests check for empty .out files again Project: http://git-wip-us.apache.org/repos/asf/flink/repo Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/d139e634 Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/d139e634 Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/d139e634 Branch: refs/heads/master Commit: d139e634087aaba7db43429d803d12203b7bc18a Parents: ab2b9f8 Author: Nico Kruber <[email protected]> Authored: Fri Nov 10 16:42:10 2017 +0100 Committer: Aljoscha Krettek <[email protected]> Committed: Mon Nov 13 16:37:51 2017 +0100 ---------------------------------------------------------------------- test-infra/end-to-end-test/common.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flink/blob/d139e634/test-infra/end-to-end-test/common.sh ---------------------------------------------------------------------- diff --git a/test-infra/end-to-end-test/common.sh b/test-infra/end-to-end-test/common.sh index 8dbf0a0..5cbfb3f 100644 --- a/test-infra/end-to-end-test/common.sh +++ b/test-infra/end-to-end-test/common.sh @@ -107,10 +107,7 @@ function stop_cluster { PASS="" fi - if grep -rv "NativeCodeLoader" $FLINK_DIR/log/*.out \ - | grep -v "Unable to load native-hadoop" \ - | grep -v "amazonaws" \ - | grep -i "."; then + if grep -ri "." $FLINK_DIR/log/*.out > /dev/null; then echo "Found non-empty .out files:" cat $FLINK_DIR/log/*.out PASS=""
