diff options
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rwxr-xr-x | libstdc++-v3/mkcheck.in | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 1b283126..366e057 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2000-06-26 Branko Cibej <branko.cibej@hermes.si> + + * mkcheck.in: Make the *.txt and *.tst files writable + after copying them to $TEST_DIR. + 2000-06-23 Benjamin Kosnik <bkoz@purist.soma.redhat.com> * bits/fstream.tcc (basic_filebuf::basic_filebuf(fd)): Use it. diff --git a/libstdc++-v3/mkcheck.in b/libstdc++-v3/mkcheck.in index 14834bf..22920fc 100755 --- a/libstdc++-v3/mkcheck.in +++ b/libstdc++-v3/mkcheck.in @@ -133,6 +133,8 @@ rm -rf ./*core # Copy over the data files for filebufs in read-only mode cp $SRC_DIR/testsuite/27_io/*.txt $TEST_DIR cp $SRC_DIR/testsuite/27_io/*.tst $TEST_DIR +chmod u+w $TEST_DIR/*.txt +chmod u+w $TEST_DIR/*.tst # Emit useful info about compiler and platform echo "host: $(uname -mrsv)" >> $RESULTS_FILE |