summaryrefslogtreecommitdiff
path: root/test/testpregap.c.in
diff options
context:
space:
mode:
authorR. Bernstein <rocky@gnu.org>2012-09-26 13:36:59 -0400
committerR. Bernstein <rocky@gnu.org>2012-09-26 13:36:59 -0400
commit74b0b023f4aad4832bdf2e9df3752c5ff2e65dc6 (patch)
treede19e1e26aaf4148367bbccc2044b1a05350f259 /test/testpregap.c.in
parent4c5369b7c407666f15beef4b6cacba8d8dfdf397 (diff)
Add "make check-short" target to run tests without bloated output.
Diffstat (limited to 'test/testpregap.c.in')
-rw-r--r--test/testpregap.c.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/testpregap.c.in b/test/testpregap.c.in
index d15bd53a..b128a7df 100644
--- a/test/testpregap.c.in
+++ b/test/testpregap.c.in
@@ -94,7 +94,7 @@ main(int argc, const char *argv[])
if (! (cdio_have_driver(DRIVER_NRG) && cdio_have_driver(DRIVER_BINCUE)
&& cdio_have_driver(DRIVER_CDRDAO)) ) {
- printf("You don't have enough drivers for this test\n");
+ printf("-- You don't have enough drivers for this test\n");
exit(77);
}
@@ -104,17 +104,17 @@ main(int argc, const char *argv[])
cdObj = cdio_open(image, DRIVER_UNKNOWN);
if (!cdObj) {
- printf("unrecognized image: %s\n", image);
+ printf("-- unrecognized image: %s\n", image);
return 50;
}
pregap = cdio_get_track_pregap_lsn(cdObj, pregapList[i].track);
if (pregap != pregapList[i].pregap) {
- printf("%s should have had pregap of lsn=%d instead of lsn=%d\n",
+ printf("-- %s should have had pregap of lsn=%d instead of lsn=%d\n",
image, pregapList[i].pregap, pregap);
rc = i + 1;
} else {
- printf("%s had expected pregap\n", image);
+ printf("-- %s had expected pregap\n", image);
}
cdio_destroy(cdObj);