]> git.stg.codes - stg.git/blobdiff - functest/functions
Use std::lock_guard instead of STG_LOCKER.
[stg.git] / functest / functions
index 183ddc4affea66cbfdb61508bfa05ec6868ec51b..a90b9dcd54686e0cc39c488ea42615c24281a400 100644 (file)
@@ -33,8 +33,15 @@ count()
 {
     if [ "$1" == "" ]
     then
-        printf "0\n"
+        printf "0"
     else
-        printf "$1\n" | wc -l
+        RES=`printf "$1\n" | wc -l`
+        RES=`trim "$RES"`
+        printf "$RES"
     fi
 }
+
+subst()
+{
+    sed -i "s|$1|$2|g" "$3" 2> /dev/null || sed -i "" "s|$1|$2|g" "$3"
+}