David Lednik
David Lednik
@piyush303 you need to create PR from your fork
@samob Did you try using security/host section of your container: 
will try that 👍
@geerlingguy Any plans for ASM1061R which supports RAID ?
is anyone able to test ASM1184e chipset, I'm planing to build my own riser card with 1 x1 to 2 x4 + 2 M.2   It uses ASMedia chip...
+1 I have same issue too. Can this be fixed soon pls.
@aditjain no. I just set my XCode to stop testing on 1st error it encounters in a test. So that gives me the correct number of failures now :)
@aditjain yes
@aditjain Try this ```Swift class XCTestCommon: XCTestCase { override func setUp() { super.setUp() self.continueAfterFailure = false } override func tearDown() { super.tearDown() } } ``` Make all your test classes...
@aditjain then it should work. It does for me. This is how your test classes should look: ```Swift class MyTestClass: XCTestCommon { func testFails() { XCTFail("Fail1") XCTFail("Fail2") XCTFail("Fail3") XCTFail("Fail4") }...