10 lines
386 B
Bash
Executable File
10 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# 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
|