Saleem Abdulrasool

Results 121 comments of Saleem Abdulrasool

Hmm, so, I looked into google/benchmark, and it does have JSON format output support. I would rather have the same output style. If JMH is important to you, then I'd...

`--format` is already available, and `json` is one of the options :)

I think that most of the C++ work is now complete - so the remainder of the work I expect that anyone should be easily able to help with. **Core...

As a status check, with the [latest main build](https://artprodeus21.artifacts.visualstudio.com/A8fd008a0-56bc-482c-ba46-67f9425510be/3133d6ab-80a8-4996-ac4f-03df25cd3224/_apis/artifact/cGlwZWxpbmVhcnRpZmFjdDovL2NvbXBuZXJkL3Byb2plY3RJZC8zMTMzZDZhYi04MGE4LTQ5OTYtYWM0Zi0wM2RmMjVjZDMyMjQvYnVpbGRJZC81ODQ4OS9hcnRpZmFjdE5hbWUvaW5zdGFsbGVyLWFtZDY00/content?format=file&subPath=%2Finstaller.exe), I have the following hacks applied locally which nearly works: ``` diff --git a/swift/internal/swift_toolchain.bzl b/swift/internal/swift_toolchain.bzl index 3063111..0bd59db 100644 --- a/swift/internal/swift_toolchain.bzl +++...

Latest update: the current version is able to build and test `//examples/xplatform/xctest:xctest` with a workaround of `--swiftcopt=-g --swiftcopt=-debug-info-format=codeview`. With a workaround applied for long paths (something which the CI builders...

No, Swift does not (and cannot) infer the debug info type for multiple reasons. If you use LINK, you cannot use DWARF period. If you use LLD, you can potentially...

@ocean90 I cannot figure out what the lint issue here is. Could you please help me understand what is going on here?

The underling issue here is that `run` will use `execSync` which will invoke the tool in a subshell. However, the result of the subshell will not be propagated back due...

#218 should be able to demonstrate the test failures at least and hopefully prevent future regressions.

@ocean90 `execute` is actually using `spawnSync` rather than `exec`, which doesn't have the same exact semantics.