diff options
author | Branko Cibej <branko.cibej@hermes.si> | 2000-06-26 20:58:19 +0200 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2000-06-26 18:58:19 +0000 |
commit | 44b1b18cb9afcfee150fe6be4c6b67155685cc22 (patch) | |
tree | 3ff93564d618db8fd02aec2229012e4e210bf05d | |
parent | 754773e2d56607d71499f9e4f240d131034499c3 (diff) | |
download | gcc-44b1b18cb9afcfee150fe6be4c6b67155685cc22.zip gcc-44b1b18cb9afcfee150fe6be4c6b67155685cc22.tar.gz gcc-44b1b18cb9afcfee150fe6be4c6b67155685cc22.tar.bz2 |
mkcheck.in: Make the *.txt and *.tst files writable after copying them to $TEST_DIR.
2000-06-26 Branko Cibej <branko.cibej@hermes.si>
* mkcheck.in: Make the *.txt and *.tst files writable
after copying them to $TEST_DIR.
From-SVN: r34715
-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 |