diff --git a/test/dios/options/main-args-c.c b/test/dios/options/main-args-c.c index 05c5ca2b9cc1af5ac21b1a1cc89fecd34802f9d8..ca173ba6a0093c37acca72df2a71a283bb749ce1 100644 --- a/test/dios/options/main-args-c.c +++ b/test/dios/options/main-args-c.c @@ -1,5 +1,5 @@ /* TAGS: min c */ -// VERIFY_OPTS: -D a=b -Dc=d +// VERIFY_OPTS: -E a=b -Ec=d // PROGRAM_OPTS: test // SKIP_CC: 1 diff --git a/test/dios/options/main-args-d.c b/test/dios/options/main-args-d.c index f3f7243bbc137ebf24cdbd7dc6d5baeead569b8e..7908e0c0773ea619d1783c0583ee091062c908c2 100644 --- a/test/dios/options/main-args-d.c +++ b/test/dios/options/main-args-d.c @@ -1,12 +1,13 @@ /* TAGS: min c */ -// VERIFY_OPTS: -D a=b -Dc=d -Dfootball +// VERIFY_OPTS: -E a=b -Ec=d -Efootball // SKIP_CC: 1 #include <dios.h> #include <assert.h> #include <string.h> -int main( int argc, char **argv, char **envp ) { +int main( int argc, char **argv, char **envp ) +{ assert( argc == 1 ); const char* test_name = "main-args-d.c"; int tl = strlen( test_name ); diff --git a/test/libc/getenv1.c b/test/libc/getenv1.c index fea7f88df1125731012b986f88c67db61c40db5c..1fdac5cd191baae252714cc2fe9805931a6dc10f 100644 --- a/test/libc/getenv1.c +++ b/test/libc/getenv1.c @@ -1,5 +1,5 @@ /* TAGS: min c */ -// VERIFY_OPTS: -Dnotpass -D TEST=passed +// VERIFY_OPTS: -Enotpass -E TEST=passed #include <stdlib.h> #include <assert.h> diff --git a/test/verify/env.cpp b/test/verify/env.cpp index f1f8eaf0e7a1ebdbea23985eb3ef89a411afac5a..6b1f9db8ced4002a17a4831881adfdac74f427f2 100644 --- a/test/verify/env.cpp +++ b/test/verify/env.cpp @@ -1,5 +1,5 @@ /* TAGS: min c++ */ -/* VERIFY_OPTS: -DFOO=blabla -DBAR=0 */ +/* VERIFY_OPTS: -EFOO=blabla -EBAR=0 */ #include <cstdlib> #include <string>