+Mon, 2 Feb 2009 21:33:57 +0100 Jim Meyering <meyering@redhat.com>
+
+ tests: diagnose more open failures
+ * tests/qemuxml2argvtest.c: Revert the change,
+ "tests: diagnose open failure" of 2009-01-30.
+ * tests/testutils.c (virtTestLoadFile): Diagnose failure here.
+
Mon Feb 2 18:33:19 GMT 2009 John Levon <john.levon@sun.com>
* src/libvirt.c: fix more printf("%s", NULL) cases
virDomainDefPtr vmdef = NULL;
virDomainObj vm;
- if (virtTestLoadFile(cmd, &expectargv, MAX_FILE) < 0) {
- fprintf(stderr, "failed to open %s: %s\n", cmd, strerror (errno));
+ if (virtTestLoadFile(cmd, &expectargv, MAX_FILE) < 0)
goto fail;
- }
if (!(vmdef = virDomainDefParseFile(NULL, driver.caps, xml,
VIR_DOMAIN_XML_INACTIVE)))
/*
* testutils.c: basic test utils
*
- * Copyright (C) 2005-2008 Red Hat, Inc.
+ * Copyright (C) 2005-2009 Red Hat, Inc.
*
* See COPYING.LIB for the License of this software
*
return ret;
}
-int virtTestLoadFile(const char *name,
+/* Read FILE into buffer BUF of length BUFLEN.
+ Upon any failure, or if FILE appears to contain more than BUFLEN bytes,
+ diagnose it and return -1, but don't bother trying to preserve errno.
+ Otherwise, return the number of bytes read (and copied into BUF). */
+int virtTestLoadFile(const char *file,
char **buf,
int buflen) {
- FILE *fp = fopen(name, "r");
+ FILE *fp = fopen(file, "r");
struct stat st;
- if (!fp)
+ if (!fp) {
+ fprintf (stderr, "%s: failed to open: %s\n", file, strerror(errno));
return -1;
+ }
if (fstat(fileno(fp), &st) < 0) {
+ fprintf (stderr, "%s: failed to fstat: %s\n", file, strerror(errno));
fclose(fp);
return -1;
}
if (st.st_size > (buflen-1)) {
+ fprintf (stderr, "%s: larger than buffer (> %d)\n", file, buflen-1);
fclose(fp);
return -1;
}
if (st.st_size) {
if (fread(*buf, st.st_size, 1, fp) != 1) {
+ fprintf (stderr, "%s: read failed: %s\n", file, strerror(errno));
fclose(fp);
return -1;
}