summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2015-01-02 15:26:12 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2015-01-04 18:30:44 +0100
commite60e8498f589edbf9d7ab016df7c2e1dc775076d (patch)
tree77f33646925d1d739a5ab385c90bcbe15366374f
parentf1b86edccf2e84c728dbe27c635e54fd27913d4e (diff)
downloadautomake-e60e8498f589edbf9d7ab016df7c2e1dc775076d.tar.gz
tests: fix some bugs in an XFAILing test
* t/subobj-vpath-pr13928.sh: This one. The test would have failed (or hung!) even if the bug it was testing against were fixed. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r--t/subobj-vpath-pr13928.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/subobj-vpath-pr13928.sh b/t/subobj-vpath-pr13928.sh
index 9c78d2e44..8c3a6c5e4 100644
--- a/t/subobj-vpath-pr13928.sh
+++ b/t/subobj-vpath-pr13928.sh
@@ -33,7 +33,7 @@ AUTOMAKE_OPTIONS = subdir-objects
noinst_PROGRAMS = test
test_SOURCES = $(srcdir)/test.c
test-objs:
- test ! -f $(srcdir)/test.$(OBJEXT)
+ test ! -f '@srcdir@/test.$(OBJEXT)'
test -f test.$(OBJEXT)
END
@@ -42,7 +42,7 @@ $ACLOCAL && $AUTOCONF && $AUTOMAKE -a || fatal_ "autotools failed"
$EGREP 'test\.|DEPDIR|dirstamp|srcdir' Makefile.in || : # For debugging.
$EGREP '\$.srcdir./test\.[o$]' Makefile.in && exit 1
$FGREP '$(srcdir)/$(am__dirstamp)' Makefile.in && exit 1
-$FGREP '$(srcdir)/$(DEPDIR)' && exit 1
+$FGREP '$(srcdir)/$(DEPDIR)' Makefile.in && exit 1
cat > test.c << 'END'
int main (void)