From bda16ef85cedb9781f07199b087f06ed4a20f408 Mon Sep 17 00:00:00 2001 From: Jordan DeLong Date: Fri, 14 Jun 2013 16:43:45 -0700 Subject: [PATCH] Delete TestExtAsio Empty stubs. --- hphp/test/ext/test_ext.h | 1 - hphp/test/ext/test_ext_asio.cpp | 85 --------------------------------- hphp/test/ext/test_ext_asio.h | 48 ------------------- 3 files changed, 134 deletions(-) delete mode 100644 hphp/test/ext/test_ext_asio.cpp delete mode 100644 hphp/test/ext/test_ext_asio.h diff --git a/hphp/test/ext/test_ext.h b/hphp/test/ext/test_ext.h index 7a3ace399..be2a19fbb 100644 --- a/hphp/test/ext/test_ext.h +++ b/hphp/test/ext/test_ext.h @@ -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" diff --git a/hphp/test/ext/test_ext_asio.cpp b/hphp/test/ext/test_ext_asio.cpp deleted file mode 100644 index fa2a76072..000000000 --- a/hphp/test/ext/test_ext_asio.cpp +++ /dev/null @@ -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); -} diff --git a/hphp/test/ext/test_ext_asio.h b/hphp/test/ext/test_ext_asio.h deleted file mode 100644 index b7bab6a5b..000000000 --- a/hphp/test/ext/test_ext_asio.h +++ /dev/null @@ -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_