[PATCH] D141084: Disable a part of the unit test CommandLineTest/BadResponseFile for z/OS.

Zibi Sarbino via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 5 13:58:13 PST 2023


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG3acb2553b9bf: Disable a part of the unit test CommandLineTest/BadResponseFile for z/OS. (authored by zibi).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D141084/new/

https://reviews.llvm.org/D141084

Files:
  llvm/unittests/Support/CommandLineTest.cpp


Index: llvm/unittests/Support/CommandLineTest.cpp
===================================================================
--- llvm/unittests/Support/CommandLineTest.cpp
+++ llvm/unittests/Support/CommandLineTest.cpp
@@ -1060,7 +1060,7 @@
   ASSERT_STREQ(Argv[0], "clang");
   ASSERT_STREQ(Argv[1], AFileExp.c_str());
 
-#ifndef _AIX
+#if !defined(_AIX) && !defined(__MVS__)
   std::string ADirExp = std::string("@") + std::string(ADir.path());
   Argv = {"clang", ADirExp.c_str()};
   Res = cl::ExpandResponseFiles(Saver, cl::TokenizeGNUCommandLine, Argv);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D141084.486674.patch
Type: text/x-patch
Size: 553 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230105/df0be8c1/attachment.bin>


More information about the llvm-commits mailing list