Browse Source

Update TFKit to v0.0.18

Alois Mahdal 4 years ago
parent
commit
411a359a0e
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      utils/tfkit/include/tools.sh
  2. 1
    1
      utils/tfkit/runtests

+ 2
- 2
utils/tfkit/include/tools.sh View File

@@ -81,7 +81,7 @@ tf_testflt() {
81 81
     # eval/report/exit
82 82
     #
83 83
     test "$r_es" = "$o_es" || { tf_warn "bad exit status: $r_es (need $o_es)" ; t_es=$TF_ES_FAIL; }
84
-    $diff -u "$o_err" "$r_err" || t_es=$TF_ES_FAIL
85
-    $diff -u "$o_out" "$r_out" || t_es=$TF_ES_FAIL
84
+    $diff -u "$r_err" "$o_err" || t_es=$TF_ES_FAIL
85
+    $diff -u "$r_out" "$o_out" || t_es=$TF_ES_FAIL
86 86
     return "$t_es"
87 87
 }

+ 1
- 1
utils/tfkit/runtests View File

@@ -3,7 +3,7 @@
3 3
 # tfkit - Shellfu's movable test framework
4 4
 # See LICENSE file for copyright and license details.
5 5
 
6
-TF_VERSION="0.0.17"
6
+TF_VERSION="0.0.18"
7 7
 
8 8
 die() {
9 9
     echo "$@" && exit 9