summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorrocky <rocky@gnu.org>2012-02-26 00:31:49 -0500
committerrocky <rocky@gnu.org>2012-02-26 00:31:49 -0500
commit3ef4cde61a6d3273b13687da0d4406e3ad5b14f5 (patch)
treefd163bcf6bc4aabcebd22743a46cb21294512916 /test
parent110ab30f171b6ee57e47e892846159a12b51680e (diff)
Skip test/driver/nrg until we work out off_t issues
Diffstat (limited to 'test')
-rw-r--r--test/driver/nrg.c.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/driver/nrg.c.in b/test/driver/nrg.c.in
index 18ee3da5..f7d9c7b7 100644
--- a/test/driver/nrg.c.in
+++ b/test/driver/nrg.c.in
@@ -1,5 +1,5 @@
/* -*- C -*-
- Copyright (C) 2008, 2010, 2011 Rocky Bernstein <rocky@gnu.org>
+ Copyright (C) 2008, 2010, 2011, 2012 Rocky Bernstein <rocky@gnu.org>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -51,6 +51,10 @@
int
main(int argc, const char *argv[])
{
+#if defined(__MINGW32__)
+ printf("nrg test skipped until off_t issues worked out on MinGW\n");
+ return 77;
+#else
char psz_nrgfile[500];
CdIo_t *p_cdio;
const char *cdtext_check[NUM_FIELDS] = {
@@ -97,4 +101,5 @@ main(int argc, const char *argv[])
cdio_destroy(p_cdio);
return 0;
+#endif
}