search for: 3aae57b

Displaying 2 results from an estimated 2 matches for "3aae57b".

2016 Mar 22
1
[PATCH] Reduce GUESTFS_PRIVATE usage
..._test_SOURCES = \ qemu-speed-test.c qemu_speed_test_CPPFLAGS = \ - -DGUESTFS_PRIVATE=1 \ -I$(top_srcdir)/gnulib/lib -I$(top_builddir)/gnulib/lib \ -I$(top_srcdir)/src -I$(top_builddir)/src \ -I$(top_srcdir)/df diff --git a/tests/regressions/Makefile.am b/tests/regressions/Makefile.am index 3aae57b..ec97553 100644 --- a/tests/regressions/Makefile.am +++ b/tests/regressions/Makefile.am @@ -130,8 +130,7 @@ rhbz914931_LDADD = \ rhbz1055452_SOURCES = rhbz1055452.c rhbz1055452_CPPFLAGS = \ - -I$(top_srcdir)/src -I$(top_builddir)/src \ - -DGUESTFS_PRIVATE=1 + -I$(top_srcdir)/src -I$(top_builddi...
2016 Feb 03
2
[PATCH 1/2] daemon: glob: do not return directories with trailing slash
...lob.sh index c520319..854d898 100755 --- a/fish/test-glob.sh +++ b/fish/test-glob.sh @@ -64,7 +64,7 @@ echo end EOF if [ "$(cat test-glob.out)" != "files -/foo/ +/foo /foo/bar1 /foo/bar2 /foo/not* diff --git a/tests/regressions/Makefile.am b/tests/regressions/Makefile.am index 3aae57b..27ad118 100644 --- a/tests/regressions/Makefile.am +++ b/tests/regressions/Makefile.am @@ -48,6 +48,7 @@ EXTRA_DIST = \ rhbz1232192.sh \ rhbz1232192.xml \ rhbz1285847.sh \ + rhbz1293271.sh \ test-noexec-stack.pl TESTS = \ @@ -77,6 +78,7 @@ TESTS = \ rhbz1175196.sh \ rhbz1232192.sh \...