Displaying 1 result from an estimated 1 matches for "c669b9d".
2014 May 05
2
[PATCH] test-charset-fidelity: allow to skip testing specific FSes
...it possible to not
test one or more filesystems without disabling the test altogether.
---
tests/charsets/test-charset-fidelity.c | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/tests/charsets/test-charset-fidelity.c b/tests/charsets/test-charset-fidelity.c
index c669b9d..654ea0f 100644
--- a/tests/charsets/test-charset-fidelity.c
+++ b/tests/charsets/test-charset-fidelity.c
@@ -33,6 +33,8 @@
#include "guestfs.h"
#include "guestfs-internal-frontend.h"
+static const char ourenvvar[] = "SKIP_TEST_CHARSET_FIDELITY";
+
struct filesyst...