ソースを参照

Add debugging around test execution

Alois Mahdal 6 年 前
コミット
60865fc65a
共有1 個のファイルを変更した3 個の追加0 個の削除を含む
  1. 3
    0
      src/libexec/jattool-qrun

+ 3
- 0
src/libexec/jattool-qrun ファイルの表示

@@ -40,8 +40,11 @@ qrun() {
40 40
         warn "failed to initialize logging"
41 41
         return 3
42 42
     }
43
+    debug "(pre-source)"
43 44
     source "$Body"
45
+    debug "(past-source)"
44 46
     jat__sfinish; tes=$?
47
+    debug -v tes
45 48
     test $tes -gt 1 && die "test indicated invalid results"
46 49
     return $tes
47 50
 }