LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 30328 - test/clang-tidy/clang-cl-driver.cpp fails when run from paths starting with '/U' (common on OS X)
Summary: test/clang-tidy/clang-cl-driver.cpp fails when run from paths starting with '...
Status: RESOLVED WONTFIX
Alias: None
Product: clang-tools-extra
Classification: Unclassified
Component: clang-tidy (show other bugs)
Version: unspecified
Hardware: PC All
: P normal
Assignee: Unassigned Clang Bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-08 12:57 PDT by Ahmed Bougacha
Modified: 2019-06-20 11:28 PDT (History)
6 users (show)

See Also:
Fixed By Commit(s):


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ahmed Bougacha 2016-09-08 12:57:36 PDT
See e.g., http://lab.llvm.org:8080/green/job/clang-stage1-configure-RA_check/21470/consoleFull#19036563798254eaf0-7326-4999-85b0-388101f2d404

This test was (re-)introduced in:
  [clang-tools-extra] r280839 - Resubmit "Add a test for clang-tidy using the clang-cl driver."

Looks like the path is interpreted as a '/U' option in clang-cl mode:

  clang-check "/Volumes/.../clang-cl-driver.cpp" -- --driver-mode=cl -###
  clang-check "/Users/.../clang-cl-driver.cpp" -- --driver-mode=cl -###

The latter emits an error:

  warning: argument unused during compilation: '-U sers/.../clang-cl-driver.cpp'
  error: unable to handle compilation, expected exactly one compiler job in ''
  Error while processing /Users/.../clang-cl-driver.cpp.
Comment 1 Ahmed Bougacha 2016-09-08 13:06:03 PDT
Reverted in r280975.  I'll take a look later today;  ideas welcome.
Comment 2 Ahmed Bougacha 2016-09-15 12:41:09 PDT
I haven't found a good way to avoid this problem. It exists even for the clang driver: there's no way to compile a file called, say, '-Df.c'.  '--' fools the driver, but I don't think there's a way to fool -cc1.

So, Zachary, unless you have another idea, I'd suggest only enabling the test on Windows, where it's known to be safe?
Comment 3 Zachary Turner 2016-09-15 12:43:58 PDT
Reid, do you have any ideas here?

TL;DR - Running clang in cl mode on platforms that use a / separator in paths interprets some paths as command line options.
Comment 4 Reid Kleckner 2016-09-15 13:16:58 PDT
Isn't this known? We have comments in all our driver tests about it...
Comment 5 Reid Kleckner 2016-09-15 13:17:11 PDT
// Note: %s must be preceded by --, otherwise it may be interpreted as a
// command-line option, e.g. on Mac where %s is commonly under /Users.
Comment 6 Reid Kleckner 2016-12-09 11:04:20 PST
Looks like this patch never relanded.
Comment 7 Reid Kleckner 2019-06-20 11:28:53 PDT
This never relanded, but I don't think there's anything to do here.