From 76c1f4fa03de349f15c82c63bc3067eea7f858d2 Mon Sep 17 00:00:00 2001 From: wuxx1279 Date: Thu, 23 Jul 2026 20:52:12 -0500 Subject: [PATCH] i386 (32-bit) testsuite fixes: correct get_pointer, restrict 64-bit-op tests The test1 suite runs a 64-bit mutator against 32-bit mutatees (there is no 32-bit mutator; BUILD_RTLIB_32). Two independent problems prevented it from producing a correct i386 baseline. - get_pointer() in test1.h built its sentinel value high-byte-first ((val << 8) | byte). The 64-bit mutator and the 32-bit mutatee evaluate this at different widths, so a pointer-sized constant crossing the boundary is truncated to 32 bits and the two sides' low 32 bits disagree (mutator 0xa4a5a6a7 vs mutatee 0xa0a1a2a3). test1_2 -- and any test comparing a get_pointer() value across mutator and mutatee -- then failed on i386. Build the value low-byte-first so its low bytes are width-independent. - test1_5 and test1_6 exercise 64-bit integer operations (long long compares, multiply/divide with results exceeding 2^32) inside instrumentation snippets. The i386 snippet register model is 32-bit and cannot represent those operands, so the tests cannot pass under the 32-bit ABI regardless of Dyninst correctness. Mark them restricted_amd64_abi so they run only under the 64-bit ABI, and update the generated test_info_new.gen.C to match (dropping their abi:32 entries). Co-Authored-By: Claude Opus 4.8 --- src/dyninst/test1.h | 9 +- src/specification/spec-grouped.pl | 6 + x86_64-unknown-linux2.4/test_info_new.gen.C | 296 -------------------- 3 files changed, 14 insertions(+), 297 deletions(-) diff --git a/src/dyninst/test1.h b/src/dyninst/test1.h index 9fb370648..5f06a9c51 100644 --- a/src/dyninst/test1.h +++ b/src/dyninst/test1.h @@ -33,9 +33,16 @@ unsigned long get_pointer() { + // Build the value low-byte-first so that its least-significant bytes are + // identical regardless of pointer width. The testsuite runs a 64-bit + // mutator against 32-bit mutatees (BUILD_RTLIB_32); a pointer-sized + // constant produced in the 64-bit mutator is passed to the 32-bit mutatee + // truncated to 32 bits, so mutator and mutatee must agree on the low 32 + // bits. The previous high-byte-first shift made them diverge (mutator low + // 32 = 0xa4a5a6a7 vs mutatee 0xa0a1a2a3), failing e.g. test1_2 on i386. unsigned long val = 0UL; for(short i = 0; i < (short)(sizeof(void *)); i++) { - val = (val << 8)|((i&0xFF)|0xA0); + val |= (unsigned long)((i & 0xFF) | 0xA0) << (8 * i); } return val; } diff --git a/src/specification/spec-grouped.pl b/src/specification/spec-grouped.pl index 6e0b5c103..0e34d404c 100644 --- a/src/specification/spec-grouped.pl +++ b/src/specification/spec-grouped.pl @@ -742,6 +742,12 @@ mutator('test2_1', ['test2_1.C']). test_runmode('test2_1', 'createProcess'). test_start_state('test2_1', 'selfstart'). +% test1_5 and test1_6 exercise 64-bit integer operations (long long +% compares / >2^32 mul/div) in snippets, which the i386 (32-bit) snippet +% register model cannot represent. Restrict them to the 64-bit ABI. +restricted_amd64_abi('test1_5'). +restricted_amd64_abi('test1_6'). + restricted_amd64_abi('test2_1'). tests_module('test2_1', 'dyninst'). diff --git a/x86_64-unknown-linux2.4/test_info_new.gen.C b/x86_64-unknown-linux2.4/test_info_new.gen.C index 3a9b87f5f..fcccbe759 100644 --- a/x86_64-unknown-linux2.4/test_info_new.gen.C +++ b/x86_64-unknown-linux2.4/test_info_new.gen.C @@ -13513,8 +13513,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -13556,8 +13554,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -13600,8 +13596,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -13644,8 +13638,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -13688,8 +13680,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -13735,8 +13725,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -13782,8 +13770,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -13829,8 +13815,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -14237,8 +14221,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -14280,8 +14262,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -14324,8 +14304,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -14368,8 +14346,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -14412,8 +14388,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -14459,8 +14433,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -14506,8 +14478,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -14553,8 +14523,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -14961,8 +14929,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15004,8 +14970,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15048,8 +15012,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15092,8 +15054,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15136,8 +15096,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -15183,8 +15141,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -15230,8 +15186,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -15277,8 +15231,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -15685,8 +15637,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15728,8 +15678,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15772,8 +15720,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15816,8 +15762,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: binary}"); @@ -15860,8 +15804,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -15907,8 +15849,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: createProcess}"); @@ -15954,8 +15894,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -16001,8 +15939,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: gcc, run_mode: useAttach}"); @@ -16410,8 +16346,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); @@ -16454,8 +16388,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: binary}"); @@ -16498,8 +16430,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); @@ -16545,8 +16475,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); @@ -16592,8 +16520,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); @@ -16639,8 +16565,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); @@ -16962,8 +16886,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); @@ -17006,8 +16928,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: binary}"); @@ -17050,8 +16970,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); @@ -17097,8 +17015,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); @@ -17144,8 +17060,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); @@ -17191,8 +17105,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); @@ -17514,8 +17426,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); @@ -17558,8 +17468,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: binary}"); @@ -17602,8 +17510,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); @@ -17649,8 +17555,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: createProcess}"); @@ -17696,8 +17600,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); @@ -17743,8 +17645,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcc, run_mode: useAttach}"); @@ -18066,8 +17966,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -18110,8 +18008,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -18154,8 +18050,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -18201,8 +18095,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -18248,8 +18140,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -18295,8 +18185,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -18618,8 +18506,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -18662,8 +18548,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -18706,8 +18590,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -18753,8 +18635,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -18800,8 +18680,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -18847,8 +18725,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -19170,8 +19046,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -19214,8 +19088,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -19258,8 +19130,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -19305,8 +19175,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -19352,8 +19220,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -19399,8 +19265,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -19722,8 +19586,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -19766,8 +19628,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: binary}"); @@ -19810,8 +19670,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -19857,8 +19715,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: createProcess}"); @@ -19904,8 +19760,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -19951,8 +19805,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icc, run_mode: useAttach}"); @@ -20273,8 +20125,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -20316,8 +20166,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -20360,8 +20208,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -20404,8 +20250,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -20448,8 +20292,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -20495,8 +20337,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -20542,8 +20382,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -20589,8 +20427,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -20997,8 +20833,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21040,8 +20874,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21084,8 +20916,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21128,8 +20958,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21172,8 +21000,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -21219,8 +21045,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -21266,8 +21090,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -21313,8 +21135,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -21721,8 +21541,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21764,8 +21582,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21808,8 +21624,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21852,8 +21666,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -21896,8 +21708,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -21943,8 +21753,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -21990,8 +21798,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -22037,8 +21843,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -22445,8 +22249,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -22488,8 +22290,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: staticMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -22532,8 +22332,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -22576,8 +22374,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: binary}"); @@ -22620,8 +22416,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -22667,8 +22461,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: createProcess}"); @@ -22714,8 +22506,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -22761,8 +22551,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: g++, run_mode: useAttach}"); @@ -23170,8 +22958,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); @@ -23214,8 +23000,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: binary}"); @@ -23258,8 +23042,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); @@ -23305,8 +23087,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); @@ -23352,8 +23132,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); @@ -23399,8 +23177,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); @@ -23722,8 +23498,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); @@ -23766,8 +23540,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: binary}"); @@ -23810,8 +23582,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); @@ -23857,8 +23627,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); @@ -23904,8 +23672,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); @@ -23951,8 +23717,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); @@ -24274,8 +24038,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); @@ -24318,8 +24080,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: binary}"); @@ -24362,8 +24122,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); @@ -24409,8 +24167,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: createProcess}"); @@ -24456,8 +24212,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); @@ -24503,8 +24257,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: pgcxx, run_mode: useAttach}"); @@ -24826,8 +24578,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -24870,8 +24620,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -24914,8 +24662,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -24961,8 +24707,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -25008,8 +24752,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); @@ -25055,8 +24797,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: none, mutateestart: local, compiler: icpc, run_mode: useAttach}"); @@ -25378,8 +25118,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -25422,8 +25160,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -25466,8 +25202,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -25513,8 +25247,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -25560,8 +25292,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); @@ -25607,8 +25337,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: low, mutateestart: local, compiler: icpc, run_mode: useAttach}"); @@ -25930,8 +25658,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -25974,8 +25700,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -26018,8 +25742,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -26065,8 +25787,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -26112,8 +25832,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); @@ -26159,8 +25877,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: high, mutateestart: local, compiler: icpc, run_mode: useAttach}"); @@ -26482,8 +26198,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -26526,8 +26240,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: post, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: binary}"); @@ -26570,8 +26282,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -26617,8 +26327,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: no_launch, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: createProcess}"); @@ -26664,8 +26372,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: pic, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); @@ -26711,8 +26417,6 @@ void initialize_mutatees(std::vector &t) { add_test(rg, "{test: test1_38, mutator: test1_38, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_39, mutator: test1_39, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_4, mutator: test1_4, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_5, mutator: test1_5, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); - add_test(rg, "{test: test1_6, mutator: test1_6, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_7, mutator: test1_7, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_8, mutator: test1_8, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}"); add_test(rg, "{test: test1_9, mutator: test1_9, grouped: false, pic: none, start_state: stopped, format: dynamicMutatee, process_mode: None, abi: 32, thread_mode: None, mutateeruntime: pre, platmode: NONE, mutatee: dyninst_group_test, mutatorstart: local, optimization: max, mutateestart: local, compiler: icpc, run_mode: useAttach}");