瀏覽代碼

Change journey test to allow Ignore annotations to have hints

Frida Johanne Tveit 9 年之前
父節點
當前提交
c174f86ac7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      bin/journey-test.sh

+ 1
- 1
bin/journey-test.sh 查看文件

230
     gradle compileTestJava
230
     gradle compileTestJava
231
     # Ensure we run all the tests (as delivered, all but the first is @Ignore'd)
231
     # Ensure we run all the tests (as delivered, all but the first is @Ignore'd)
232
     for testfile in `find . -name "*Test.java"`; do
232
     for testfile in `find . -name "*Test.java"`; do
233
-      sed 's/@Ignore//' ${testfile} > "${tempfile}" && mv "${tempfile}" "${testfile}"
233
+      sed 's/@Ignore\(.*\)//' ${testfile} > "${tempfile}" && mv "${tempfile}" "${testfile}"
234
     done
234
     done
235
     gradle test
235
     gradle test
236
     popd
236
     popd