| # Check rm file operations. |
| # Check force remove commands success whether the file does or doesn't exist. |
| # |
| # RUN: rm -f %t.write |
| # RUN: %{python} %S/../check_path.py file %t.write > %t.out |
| # RUN: FileCheck --check-prefix=REMOVE-FILE < %t.out %s |
| # RUN: echo "create a temp file" > %t.write |
| # RUN: %{python} %S/../check_path.py file %t.write > %t.out |
| # RUN: FileCheck --check-prefix=FILE-EXIST < %t.out %s |
| # RUN: rm -f %t.write |
| # RUN: %{python} %S/../check_path.py file %t.write > %t.out |
| # RUN: FileCheck --check-prefix=REMOVE-FILE < %t.out %s |
| # |
| # REMOVE-FILE: False |
| # FILE-EXIST: True |
| # |
| # Check mkdir and rm folder operations. |
| # Check force remove commands success whether the directory does or doesn't exist. |
| # |
| # Check the mkdir command with -p option. |
| # RUN: rm -f -r %t.test |
| # RUN: %{python} %S/../check_path.py dir %t.test > %t.out |
| # RUN: FileCheck --check-prefix=REMOVE-PARENT-DIR < %t.out %s |
| # RUN: mkdir -p %t.test |
| # RUN: %{python} %S/../check_path.py dir %t.test > %t.out |
| # RUN: FileCheck --check-prefix=MAKE-PARENT-DIR < %t.out %s |
| # RUN: rm -f %t.test || true |
| # RUN: rm -f -r %t.test |
| # RUN: %{python} %S/../check_path.py dir %t.test > %t.out |
| # RUN: FileCheck --check-prefix=REMOVE-PARENT-DIR < %t.out %s |
| # |
| # MAKE-PARENT-DIR: True |
| # REMOVE-PARENT-DIR: False |
| # |
| # Check the mkdir command without -p option. |
| # |
| # RUN: rm -rf %t.test1 |
| # RUN: mkdir %t.test1 |
| # RUN: %{python} %S/../check_path.py dir %t.test1 > %t.out |
| # RUN: FileCheck --check-prefix=MAKE-DIR < %t.out %s |
| # RUN: cd %t.test1 && mkdir foo |
| # RUN: %{python} %S/../check_path.py dir %t.test1 > %t.out |
| # RUN: FileCheck --check-prefix=MAKE-DIR < %t.out %s |
| # RUN: cd .. && rm -rf %t.test1 |
| # RUN: %{python} %S/../check_path.py dir %t.test1 > %t.out |
| # RUN: FileCheck --check-prefix=REMOVE-DIR < %t.out %s |
| # |
| # MAKE-DIR: True |
| # REMOVE-DIR: False |
| # |
| # Check creating and removing multiple folders and rm * operation. |
| # |
| # RUN: rm -rf %t.test |
| # RUN: mkdir -p %t.test/test1 %t.test/test2 |
| # RUN: %{python} %S/../check_path.py dir %t.test %t.test/test1 %t.test/test2 > %t.out |
| # RUN: FileCheck --check-prefix=DIRS-EXIST < %t.out %s |
| # RUN: mkdir %t.test || true |
| # RUN: echo "create a temp file" > %t.test/temp.write |
| # RUN: echo "create a temp1 file" > %t.test/test1/temp1.write |
| # RUN: echo "create a temp2 file" > %t.test/test2/temp2.write |
| # RUN: %{python} %S/../check_path.py file %t.test/temp.write %t.test/test1/temp1.write %t.test/test2/temp2.write> %t.out |
| # RUN: FileCheck --check-prefix=FILES-EXIST < %t.out %s |
| # RUN: rm -r -f %t* |
| # RUN: %{python} %S/../check_path.py dir %t.test > %t.out |
| # RUN: FileCheck --check-prefix=REMOVE-ALL < %t.out %s |
| # |
| # DIRS-EXIST: True |
| # DIRS-EXIST-NEXT: True |
| # DIRS-EXIST-NEXT: True |
| # FILES-EXIST: True |
| # FILES-EXIST-NEXT: True |
| # FILES-EXIST-NEXT: True |
| # REMOVE-ALL: False |
| # |
| # Check diff operations. |
| # |
| # RUN: echo "hello" > %t.stdout |
| # RUN: echo "hello" > %t1.stdout |
| # RUN: diff %t.stdout %t1.stdout |
| # RUN: diff -u %t.stdout %t1.stdout |
| # RUN: echo "hello-2" > %t1.stdout |
| # RUN: diff %t.stdout %t1.stdout || true |
| # |
| # RUN: mkdir -p %t.dir1 %t.dir2 |
| # RUN: cd %t.dir1 && echo "hello" > temp1.txt |
| # RUN: cd %t.dir2 && echo "hello" > temp2.txt |
| # RUN: diff temp2.txt ../%{t:stem}.tmp.dir1/temp1.txt |