| 767 | : VerifyApplication::Test(name,isa,VerifyApplication::TEST_SHOULD_PASS) {} |
| 768 | |
| 769 | VerifyApplication::TestReturnValue run(VerifyApplication* state, bool silent) |
| 770 | { |
| 771 | std::string cfg = state->rtcore + ",isa="+stringOfISA(isa); |
| 772 | RTCDevice device1 = rtcNewDevice(cfg.c_str()); |
| 773 | AssertNoError(device1); |
| 774 | RTCDevice device2 = rtcNewDevice(cfg.c_str()); |
| 775 | AssertNoError(device2); |
| 776 | RTCDevice device3 = rtcNewDevice(cfg.c_str()); |
| 777 | AssertNoError(device3); |
| 778 | rtcReleaseDevice(device1); |
| 779 | rtcReleaseDevice(device3); |
| 780 | rtcReleaseDevice(device2); |
| 781 | return VerifyApplication::PASSED; |
| 782 | } |
| 783 | }; |
| 784 | |
| 785 | struct GetBoundsTest : public VerifyApplication::Test |
nothing calls this directly
no test coverage detected