Now copying libisoburn/releng into GNU xorriso

This commit is contained in:
Thomas Schmitt 2012-04-21 19:34:31 +00:00
parent 07b5eb1323
commit c9e5c518bf
4 changed files with 20 additions and 3 deletions

View File

@ -5,7 +5,7 @@ libisoburn/releng. By George Danchev <danchev@spnet.net>
and Thomas Schmitt <scdbackup@gmx.net>
Test suite for xorriso and libburnia libraries.
Copyright (C) 2011 George Danchev, Thomas Schmitt
Copyright (C) 2011 - 2012 George Danchev, Thomas Schmitt
Provided under GPL version 2 or later.
------------------------------------------------------------------------------
@ -136,6 +136,7 @@ Any auto_* script can be run on its own. Some of them demand option -x.
All general options are accepted.
./auto_cxx
Not included in GNU xorriso.
Exercises inclusion of xorriso/xorriso.h and libisoburn/libisoburn.h
in C++ programs and linking of the libraries. It might be necessary
to set compiler options by shell variable CFLAGS before running the test.

View File

@ -40,4 +40,3 @@
shall present the manual tests, give an opportunity to skip the test,
and ask for parameters,
* derive a GNU xorriso test suite from libisoburn test suite

View File

@ -78,6 +78,16 @@ copy_files() {
fi
}
copy_tree() {
if cp -a "$@"
then
dummy=dummy
else
echo "Failed to : cp -a " "$@" >&2
exit 1
fi
}
if test -e "$lone_dir"
then
echo "Already existing : $lone_dir" >&2
@ -224,6 +234,13 @@ copy_files \
"$lone_dir"/test/compare_file.c
# releng
copy_tree releng "$lone_dir"/releng
rm "$lone_dir"/releng/auto_cxx
# nglibisofs
create_dir "$lone_dir"/libisofs

View File

@ -1 +1 @@
#define Xorriso_timestamP "2012.04.19.074422"
#define Xorriso_timestamP "2012.04.21.193504"