Fix timings in new StlPlayer
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [[ $(sqldiff ${CMAKE_CURRENT_SOURCE_DIR}/${standard}/expected/${output_filename} ${output_filename}) ]]; then
|
||||
exit -1
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
# When comparing the whole database, we do not care if there are differences or not.
|
||||
# The tables that need to be checked have their own tests.
|
||||
# The purpose of this script is solely to output the differences of the two databases
|
||||
# so that they can be inspected easily.
|
||||
|
||||
sqldiff ${CMAKE_CURRENT_SOURCE_DIR}/${standard}/expected/${output_filename} ${output_filename}
|
||||
exit 0
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [[ $(sqldiff --table ${table} ${CMAKE_CURRENT_SOURCE_DIR}/${standard}/expected/${output_filename} ${output_filename}) ]]; then
|
||||
stdout=$(sqldiff --table ${table} ${CMAKE_CURRENT_SOURCE_DIR}/${standard}/expected/${output_filename} ${output_filename})
|
||||
|
||||
if [[ $stdout ]]; then
|
||||
echo $stdout
|
||||
exit -1
|
||||
else
|
||||
exit 0
|
||||
|
||||
Reference in New Issue
Block a user