Changeset 2602


Ignore:
Timestamp:
Mar 9, 2006, 11:53:49 PM (19 years ago)
Author:
bird
Message:

hacking it so it works on OS/2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/coreutils/tests/misc/pwd

    r2554 r2602  
    3939
    4040my $cwd = $ENV{CWD};
    41 my $z = 'z' x 31;
    42 my $n = 256;
     41#my $z = 'z' x 31; - this doesn't work on OS/2!
     42#my $n = 256;      - this doesn't work on OS/2!
     43my $z = 'z' x 15;  # just a fake to make the test work
     44my $n = 10;
    4345my $expected = $cwd . ("/$z" x $n);
    4446
     
    5658  or die "$ME: envvar BUILD_SRC_DIR not defined\n";
    5759my $pwd_binary = "$build_src_dir/pwd";
     60$pwd_binary = "$build_src_dir/pwd.exe" if ! -f $pwd_binary;
    5861-x $pwd_binary
    5962  or die "$ME: $pwd_binary is not an executable file\n";
Note: See TracChangeset for help on using the changeset viewer.