X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2Fstdlib%2Fgetenv.c;h=4eb70102e54614867676813e30ba6a4d8ec18184;hb=f2a617905a769178f35c9ea1abdd080023279e4e;hp=2a8b63466d913cac629e4e36c30919d33ce827b9;hpb=b42a534f135f12fe47a6bc343bb6cc2c0e973198;p=pdclib.old diff --git a/platform/example/functions/stdlib/getenv.c b/platform/example/functions/stdlib/getenv.c index 2a8b634..4eb7010 100644 --- a/platform/example/functions/stdlib/getenv.c +++ b/platform/example/functions/stdlib/getenv.c @@ -38,7 +38,8 @@ char * getenv( const char * name ) int main( void ) { - TESTCASE( strcmp( getenv( "SHELL" ), "/bin/sh" ) == 0 ); + TESTCASE( strcmp( getenv( "SHELL" ), "/bin/bash" ) == 0 ); + /* TESTCASE( strcmp( getenv( "SHELL" ), "/bin/sh" ) == 0 ); */ return TEST_RESULTS; }