Repository: flink
Updated Branches:
  refs/heads/release-1.4 ce1cb8fd6 -> 8f2d0fa8c


[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/8f2d0fa8
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/8f2d0fa8
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/8f2d0fa8

Branch: refs/heads/release-1.4
Commit: 8f2d0fa8c9331d856c635dffa02840bd690b684e
Parents: 97a3491
Author: Nico Kruber <[email protected]>
Authored: Fri Nov 10 16:42:10 2017 +0100
Committer: Aljoscha Krettek <[email protected]>
Committed: Mon Nov 13 17:41:15 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/8f2d0fa8/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=""

Reply via email to