1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:37:35 +00:00

Everywhere: Move cpp-tests under /home/anon/Tests

This commit is contained in:
Brian Gianforcaro 2022-03-20 11:38:55 -07:00 committed by Andreas Kling
parent d7492927e9
commit 67fc81a65a
7 changed files with 18 additions and 18 deletions

View file

@ -25,12 +25,12 @@ If a directory is specified in `source`, the `-R` (recursive) flag is required.
## Examples
```sh
# Copy cpp-tests file and name it cpp-tests-backup
$ cp cpp-tests cpp-tests-backup
# Copy test file and name it test-backup
$ cp test test-backup
# Copy cpp-tests directory and name it cpp-tests-backup
$ cp -R cpp-tests cpp-tests-backup
# Copy tests directory and name it tests-backup
$ cp -R tests tests-backup
# Copy cpp-tests file into existing root
$ cp cpp-tests root
# Copy test file into existing root
$ cp test root
```

View file

@ -26,6 +26,6 @@ If a directory is specified in `path`, the `-r` (recursive) flag is required. Ot
# Remove README.md file
$ rm README.md
# Remove cpp-tests directory
$ rm -r cpp-tests
# Remove Tests directory
$ rm -r Tests
```