summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKurt Pattyn <kurt.pattyn@barco.com>2013-08-06 15:20:27 +0200
committerKurt Pattyn <kurt.pattyn@barco.com>2013-08-06 15:20:27 +0200
commitad1c16110b401dc7ba7e295b81d90b6535fd6533 (patch)
tree0f3bb74f20a62aa6becd755a7a7e85ab1b3ae42a /test
parent96cd18b052d5a83dfee745fd0956f3d530f30bd6 (diff)
downloadqtwebsockets-ad1c16110b401dc7ba7e295b81d90b6535fd6533.tar.gz
Fixed early close bug
Diffstat (limited to 'test')
-rw-r--r--test/tst_compliance.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tst_compliance.cpp b/test/tst_compliance.cpp
index c93b403..e9c10aa 100644
--- a/test/tst_compliance.cpp
+++ b/test/tst_compliance.cpp
@@ -80,7 +80,7 @@ void ComplianceTest::runTestCase(int nbr, int total)
pWebSocket->open(url);
spy.wait(60000);
//pWebSocket->close();
- delete pWebSocket;
+ //delete pWebSocket;
runTestCase(nbr + 1, total);
}
@@ -121,7 +121,7 @@ void ComplianceTest::autobahnTest()
url.setQuery(query);
pWebSocket->open(url);
spy.wait(60000);
- delete pWebSocket;
+ //delete pWebSocket;
}
DECLARE_TEST(ComplianceTest)