stale RESTORE option related code removed

This commit is contained in:
sramamoorthy 2019-04-04 11:33:00 -07:00 committed by Alex Miller
parent 17ecba8313
commit 8370871e4c
3 changed files with 2 additions and 7 deletions

View File

@ -54,7 +54,7 @@ endfunction()
# all these tests in serialized order and within the same directory. This is
# useful for restart tests
function(add_fdb_test)
set(options UNIT IGNORE RESTORE)
set(options UNIT IGNORE)
set(oneValueArgs TEST_NAME TIMEOUT)
set(multiValueArgs TEST_FILES)
cmake_parse_arguments(ADD_FDB_TEST "${options}" "${oneValueArgs}" "${multiValueArgs}" "${ARGN}")

View File

@ -140,7 +140,7 @@ else()
-Wno-deprecated
-fvisibility=hidden
-Wreturn-type
# -fdiagnostics-color=always
-fdiagnostics-color=always
-fPIC)
if (GPERFTOOLS_FOUND AND GCC)
add_compile_options(

View File

@ -300,8 +300,6 @@ def run_simulation_test(basedir, options):
tmp[0] = options.old_binary
if not first:
tmp.append('-R')
if options.restoring == 'YES':
tmp.append('--restoring')
first = False
tmp.append('-f')
tmp.append(testfile)
@ -370,9 +368,6 @@ if __name__ == '__main__':
choices=['xml', 'json'], help='Log format (json or xml)')
parser.add_argument('-O', '--old-binary', required=False, default=None,
help='Path to the old binary to use for upgrade tests')
parser.add_argument('-RO', '--restoring', required=False, default='NO',
choices=['YES', 'NO'],
help='Set if you want asnapshot to be restored')
parser.add_argument('--aggregate-traces', default='NONE',
choices=['NONE', 'FAILED', 'ALL'])
parser.add_argument('--keep-logs', default='FAILED',