/* * Copyright (C) 2005 Rocky Bernstein * * 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 * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ /* Test the operation of vcd-info and vcdxrip on a real CD-ROM - not a CD-ROM image. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_STDLIB_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H #include #endif #ifdef HAVE_UNISTD_H # include #endif #include #include #include #define SKIP_TEST_RC 77 #define FRONTEND_DIR "../frontends/" int main(int argc, const char *argv[]) { int i_rc=0; vcdinfo_obj_t *p_vcdinfo; char *psz_source = NULL; char cmd[1024]; struct stat statbuf; /* Set to give only errors on open, not warnings. */ vcd_loglevel_default = VCD_LOG_ERROR; if ( vcdinfo_open(&p_vcdinfo, &psz_source, DRIVER_DEVICE, NULL) != VCDINFO_OPEN_VCD) { printf("Unable to find a CD-ROM with a (S)VCD in it; skipping test\n"); return SKIP_TEST_RC; } vcd_loglevel_default = VCD_LOG_WARN; vcdinfo_close(p_vcdinfo); if (0 != stat(FRONTEND_DIR "cli/vcd-info", &statbuf)) { printf("Unable to find vcd-info program; skipping test\n"); i_rc = SKIP_TEST_RC; } else { snprintf(cmd, sizeof(cmd), FRONTEND_DIR "cli/vcd-info -i %s", psz_source); i_rc = system(cmd); } if (0 != stat(FRONTEND_DIR "xml/vcdxrip", &statbuf)) { printf("Unable to find vcdxrip program; skipping test\n"); } else { int i_rc2; snprintf(cmd, sizeof(cmd), FRONTEND_DIR "xml/vcdxrip --norip --input=%s", psz_source); i_rc2 = system(cmd); if (i_rc2 && SKIP_TEST_RC != i_rc && !i_rc) i_rc = i_rc2; } free(psz_source); return i_rc; }