diff options
| author | Ralf Jung | 2018-05-13 14:32:01 +0200 |
|---|---|---|
| committer | Ralf Jung | 2018-05-13 14:32:01 +0200 |
| commit | 32fadefb0114ed021818ab1be203df807a198228 (patch) | |
| tree | 2b5a70a7c69d777c3005a9f6d609464b5068bff5 /test-suite/misc | |
| parent | 5da17b8c60846913db18b0f9216d63898933aa52 (diff) | |
Move 4722 (dangling symlink) to misc tests, remove dangling symlink from repo
Fixes #7065
Diffstat (limited to 'test-suite/misc')
| -rw-r--r-- | test-suite/misc/.gitignore | 2 | ||||
| -rwxr-xr-x | test-suite/misc/4722.sh | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/test-suite/misc/.gitignore b/test-suite/misc/.gitignore new file mode 100644 index 0000000000..a4083e9314 --- /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 0000000000..86bc50b5cd --- /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 |
