diff options
author | Ralf Jung <post@ralfj.de> | 2018-05-13 14:32:01 +0200 |
---|---|---|
committer | Ralf Jung <post@ralfj.de> | 2018-05-13 14:32:01 +0200 |
commit | 32fadefb0114ed021818ab1be203df807a198228 (patch) | |
tree | 2b5a70a7c69d777c3005a9f6d609464b5068bff5 /test-suite | |
parent | 5da17b8c60846913db18b0f9216d63898933aa52 (diff) |
Move 4722 (dangling symlink) to misc tests, remove dangling symlink from repo
Fixes #7065
Diffstat (limited to 'test-suite')
-rw-r--r-- | test-suite/bugs/closed/4722.v | 1 | ||||
l--------- | test-suite/bugs/closed/4722/tata | 1 | ||||
-rw-r--r-- | test-suite/misc/.gitignore | 2 | ||||
-rwxr-xr-x | test-suite/misc/4722.sh | 15 |
4 files changed, 17 insertions, 2 deletions
diff --git a/test-suite/bugs/closed/4722.v b/test-suite/bugs/closed/4722.v deleted file mode 100644 index 2d41828f1..000000000 --- a/test-suite/bugs/closed/4722.v +++ /dev/null @@ -1 +0,0 @@ -(* -*- coq-prog-args: ("-R" "4722" "Foo") -*- *) diff --git a/test-suite/bugs/closed/4722/tata b/test-suite/bugs/closed/4722/tata deleted file mode 120000 index b38e66e75..000000000 --- a/test-suite/bugs/closed/4722/tata +++ /dev/null @@ -1 +0,0 @@ -toto
\ No newline at end of file diff --git a/test-suite/misc/.gitignore b/test-suite/misc/.gitignore new file mode 100644 index 000000000..a4083e931 --- /dev/null +++ b/test-suite/misc/.gitignore @@ -0,0 +1,2 @@ +4722/ +4722.v diff --git a/test-suite/misc/4722.sh b/test-suite/misc/4722.sh new file mode 100755 index 000000000..86bc50b5c --- /dev/null +++ b/test-suite/misc/4722.sh @@ -0,0 +1,15 @@ +#!/bin/sh +set -e + +# create test files +mkdir -p misc/4722 +ln -sf toto misc/4722/tata +touch misc/4722.v + +# run test +$coqtop "-R" "misc/4722" "Foo" -top Top -load-vernac-source misc/4722.v + +# clean up test files +rm misc/4722/tata +rmdir misc/4722 +rm misc/4722.v |