mirror of
https://github.com/kvz/bash3boilerplate.git
synced 2025-02-22 15:50:47 +00:00
commit
c1fecf33c3
@ -51,6 +51,7 @@ Although *3* introduces a node.js dependency, this does allow for easy version p
|
||||
|
||||
### master (Unreleased)
|
||||
|
||||
- Fix Travis OSX testing (before, it would silently pass failures) (#10)
|
||||
- Enable dashes in long, GNU style options, as well as numbers (thanks @zbeekman)
|
||||
|
||||
### v2.0.0 (2016-02-17)
|
||||
|
@ -147,17 +147,14 @@ for scenario in $(echo ${scenarios}); do
|
||||
fi
|
||||
fi
|
||||
|
||||
diff \
|
||||
--strip-trailing-cr \
|
||||
"${__dir}/fixture/${scenario}.${typ}" \
|
||||
"${curFile}" || ( \
|
||||
echo -e "\n\n==> MISMATCH OF: ${typ}";
|
||||
echo -e "\n\n==> EXPECTED STDIO: ";
|
||||
cat "${__dir}/fixture/${scenario}.stdio";
|
||||
echo -e "\n\n==> ACTUAL STDIO: ";
|
||||
cat "${__accptstTmpDir}/${scenario}.stdio";
|
||||
exit 1; \
|
||||
)
|
||||
if ! diff --strip-trailing-cr "${__dir}/fixture/${scenario}.${typ}" "${curFile}"; then
|
||||
echo -e "\n\n==> MISMATCH OF: ${scenario}.${typ} ---^"
|
||||
echo -e "\n\n==> EXPECTED STDIO: "
|
||||
cat "${__dir}/fixture/${scenario}.stdio" || true
|
||||
echo -e "\n\n==> ACTUAL STDIO: "
|
||||
cat "${__accptstTmpDir}/${scenario}.stdio" || true
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "✓"
|
||||
done
|
||||
|
Loading…
x
Reference in New Issue
Block a user