comparison tests/test-archive-symlinks.t @ 25472:4d2b9b304ad0

tests: drop explicit $TESTDIR from executables $TESTDIR is added to the path, so this is superfluous. Also, inconsistent use of quotes means we might have broken on tests with paths containing spaces.
author Matt Mackall <mpm@selenic.com>
date Mon, 08 Jun 2015 14:44:30 -0500
parents 7a9cbb315d84
children c4d03b6d9576
comparison
equal deleted inserted replaced
25470:378a8e700e02 25472:4d2b9b304ad0
16 16
17 files 17 files
18 18
19 $ cd "$origdir" 19 $ cd "$origdir"
20 $ cd archive 20 $ cd archive
21 $ "$TESTDIR/readlink.py" dangling 21 $ readlink.py dangling
22 dangling -> nothing 22 dangling -> nothing
23 23
24 tar 24 tar
25 25
26 $ cd "$origdir" 26 $ cd "$origdir"
27 $ tar xf archive.tar 27 $ tar xf archive.tar
28 $ cd tar 28 $ cd tar
29 $ "$TESTDIR/readlink.py" dangling 29 $ readlink.py dangling
30 dangling -> nothing 30 dangling -> nothing
31 31
32 zip 32 zip
33 33
34 $ cd "$origdir" 34 $ cd "$origdir"
35 $ unzip archive.zip > /dev/null 2>&1 35 $ unzip archive.zip > /dev/null 2>&1
36 $ cd zip 36 $ cd zip
37 $ "$TESTDIR/readlink.py" dangling 37 $ readlink.py dangling
38 dangling -> nothing 38 dangling -> nothing
39 39
40 $ cd .. 40 $ cd ..