Delete TestExtAsio

Empty stubs.
Esse commit está contido em:
Jordan DeLong
2013-06-14 16:43:45 -07:00
commit de Sara Golemon
commit bda16ef85c
3 arquivos alterados com 0 adições e 134 exclusões
-1
Ver Arquivo
@@ -34,7 +34,6 @@
#include "hphp/facebook/extensions/string_buffer/test_ext_string_buffer.h"
#include "hphp/facebook/extensions/tao/test_ext_tao.h"
#include "hphp/facebook/extensions/urlextraction/test_ext_urlextraction.h"
#include "hphp/test/ext/test_ext_asio.h"
#include "hphp/test/ext/test_ext_bcmath.h"
#include "hphp/test/ext/test_ext_bzip2.h"
#include "hphp/test/ext/test_ext_class.h"
-85
Ver Arquivo
@@ -1,85 +0,0 @@
/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#include "hphp/test/ext/test_ext_asio.h"
#include "hphp/runtime/ext/ext_asio.h"
IMPLEMENT_SEP_EXTENSION_TEST(Asio);
///////////////////////////////////////////////////////////////////////////////
bool TestExtAsio::RunTests(const std::string &which) {
bool ret = true;
RUN_TEST(test_asio_set_on_failed_callback);
RUN_TEST(test_WaitHandle);
RUN_TEST(test_StaticWaitHandle);
RUN_TEST(test_StaticResultWaitHandle);
RUN_TEST(test_StaticExceptionWaitHandle);
RUN_TEST(test_WaitableWaitHandle);
RUN_TEST(test_BlockableWaitHandle);
RUN_TEST(test_ContinuationWaitHandle);
RUN_TEST(test_GenArrayWaitHandle);
RUN_TEST(test_GenVectorWaitHandle);
RUN_TEST(test_SetResultToRefWaitHandle);
return ret;
}
///////////////////////////////////////////////////////////////////////////////
bool TestExtAsio::test_asio_set_on_failed_callback() {
return Count(true);
}
bool TestExtAsio::test_WaitHandle() {
return Count(true);
}
bool TestExtAsio::test_StaticWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_StaticResultWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_StaticExceptionWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_WaitableWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_BlockableWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_ContinuationWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_GenArrayWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_GenVectorWaitHandle() {
return Count(true);
}
bool TestExtAsio::test_SetResultToRefWaitHandle() {
return Count(true);
}
-48
Ver Arquivo
@@ -1,48 +0,0 @@
/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#ifndef incl_HPHP_TEST_EXT_ASIO_H_
#define incl_HPHP_TEST_EXT_ASIO_H_
// >>>>>> Generated by idl.php. Do NOT modify. <<<<<<
#include "hphp/test/ext/test_cpp_ext.h"
///////////////////////////////////////////////////////////////////////////////
class TestExtAsio : public TestCppExt {
public:
virtual bool RunTests(const std::string &which);
bool test_asio_enter_context();
bool test_asio_exit_context();
bool test_asio_get_current();
bool test_asio_set_on_failed_callback();
bool test_WaitHandle();
bool test_StaticWaitHandle();
bool test_StaticResultWaitHandle();
bool test_StaticExceptionWaitHandle();
bool test_WaitableWaitHandle();
bool test_BlockableWaitHandle();
bool test_ContinuationWaitHandle();
bool test_GenArrayWaitHandle();
bool test_GenVectorWaitHandle();
bool test_SetResultToRefWaitHandle();
};
///////////////////////////////////////////////////////////////////////////////
#endif // incl_HPHP_TEST_EXT_ASIO_H_