diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-27T13·12+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-10-27T13·12+0000 |
commit | ed09821859e8e585c8479a3c3bf95e76d518d66f (patch) | |
tree | f7c4d452439733183c354494f7b6d69e5bf4e599 /tests/lang/parse-okay-subversion.nix | |
parent | 3277c9432ab718c8b80c54b228f8d5fbf94fb033 (diff) |
* Use `atdiff' instead of `cmp' for checking test output.
* Don't use local file names in tests since they will produce different parse trees depending on the current directory.
Diffstat (limited to 'tests/lang/parse-okay-subversion.nix')
-rw-r--r-- | tests/lang/parse-okay-subversion.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lang/parse-okay-subversion.nix b/tests/lang/parse-okay-subversion.nix index 5909da88f838..356272815d26 100644 --- a/tests/lang/parse-okay-subversion.nix +++ b/tests/lang/parse-okay-subversion.nix @@ -19,7 +19,7 @@ assert javahlBindings -> j2sdk != null; stdenv.mkDerivation { name = "subversion-1.1.1"; - builder = ./builder.sh; + builder = /foo/bar; src = fetchurl { url = http://subversion.tigris.org/tarballs/subversion-1.1.1.tar.bz2; md5 = "a180c3fe91680389c210c99def54d9e0"; @@ -28,7 +28,7 @@ stdenv.mkDerivation { # This is a hopefully temporary fix for the problem that # libsvnjavahl.so isn't linked against libstdc++, which causes # loading the library into the JVM to fail. - patches = if javahlBindings then [./javahl.patch] else []; + patches = if javahlBindings then [/javahl.patch] else []; openssl = if sslSupport then openssl else null; httpd = if httpServer then httpd else null; |