Author: Jonas Devlieghere Date: 2020-01-07T21:40:07-08:00 New Revision: adee6454b7ac8e7a489ec63e338e1d4a5705e2f1
URL: https://github.com/llvm/llvm-project/commit/adee6454b7ac8e7a489ec63e338e1d4a5705e2f1 DIFF: https://github.com/llvm/llvm-project/commit/adee6454b7ac8e7a489ec63e338e1d4a5705e2f1.diff LOG: [lldb/Test] Try to appease the Windows bot In TestConvenienceVariables I changed %t from a file to a directory. This tripped up mkdir which can't deal with an existing file at the given location. In order to solve this issue on the bots I added an `rm -rf %t` statement, but now the Windows bot complains that "This function is not supported on this system". If you never ran the test suite wit this temporary workaround, the test might fail. If this happens please remove what %t expands to in the lit output and rerun the test. Added: Modified: lldb/test/Shell/Driver/TestConvenienceVariables.test Removed: ################################################################################ diff --git a/lldb/test/Shell/Driver/TestConvenienceVariables.test b/lldb/test/Shell/Driver/TestConvenienceVariables.test index 14887fdd4990..d9c8f7581bea 100644 --- a/lldb/test/Shell/Driver/TestConvenienceVariables.test +++ b/lldb/test/Shell/Driver/TestConvenienceVariables.test @@ -1,5 +1,4 @@ REQUIRES: python -RUN: rm -rf %t RUN: mkdir -p %t RUN: %build %p/Inputs/hello.cpp -o %t/target.out RUN: %lldb %t/target.out -s %p/Inputs/convenience.in -o quit | FileCheck %s _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits