summaryrefslogtreecommitdiff
path: root/test cases/unit/89 pkgconfig build rpath order/prog.cc
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-02-07 19:02:08 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2021-02-09 00:30:20 +0200
commitd2c39e83ba20595a3b662bc16f8d249d324dbb67 (patch)
tree56c1bae0633341db24250efc3a90adfa4fb59d12 /test cases/unit/89 pkgconfig build rpath order/prog.cc
parent71784e1002fe7a5507111273d78ddc8ed654e8de (diff)
downloadmeson-d2c39e83ba20595a3b662bc16f8d249d324dbb67.tar.gz
Condense test directory names in preparation for rc1.
Diffstat (limited to 'test cases/unit/89 pkgconfig build rpath order/prog.cc')
-rw-r--r--test cases/unit/89 pkgconfig build rpath order/prog.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/test cases/unit/89 pkgconfig build rpath order/prog.cc b/test cases/unit/89 pkgconfig build rpath order/prog.cc
deleted file mode 100644
index c7c212370..000000000
--- a/test cases/unit/89 pkgconfig build rpath order/prog.cc
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <string>
-#include <iostream>
-
-int main(int argc, char **argv) {
- std::string* s = new std::string("Hello");
- delete s;
- return 0;
-}