tests: add search_tests_git.sh
authorJean Privat <jean@pryen.org>
Thu, 28 Aug 2014 14:21:33 +0000 (10:21 -0400)
committerJean Privat <jean@pryen.org>
Thu, 28 Aug 2014 21:00:11 +0000 (17:00 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

tests/search_tests_git.sh [new file with mode: 0755]

diff --git a/tests/search_tests_git.sh b/tests/search_tests_git.sh
new file mode 100755 (executable)
index 0000000..6568463
--- /dev/null
@@ -0,0 +1,36 @@
+#!/bin/bash
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# List test files associated to modified file or sav
+
+if test "$#" -lt 2; then
+       echo "Usage: git_search_tests from to"
+       echo "List test files associated to modified file or sav"
+       exit
+fi
+
+from=$1
+to=$2
+
+err=0
+
+# base tests that are empirically easy to brake
+moretests="base_compile.nit base_attr.nit base_gen.nit base_gen_reassign.nit"
+
+# Get the modified files
+git diff --name-only $from..$to -- "../*.nit" "*.res" > git_search_tests.out
+
+# filter it trough ./search_tests.sh
+./search_tests.sh $moretests `cat git_search_tests.out` 2> /dev/null | sort -u