David Lednik

Results 11 comments of David Lednik

@piyush303 you need to create PR from your fork

@samob Did you try using security/host section of your container: ![image](https://user-images.githubusercontent.com/5610466/36159457-a7105c5c-10d6-11e8-917b-2c393e44d7f6.png)

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 ![image](https://user-images.githubusercontent.com/5610466/103398797-cc3e7e00-4b70-11eb-8779-1856f38e842b.png) ![image](https://user-images.githubusercontent.com/5610466/103398675-5d612500-4b70-11eb-92a8-64e74531d05a.png) It uses ASMedia chip...

@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 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") }...