From 7c8e2433992aac41bdeb0d7d0861b738d9866628 Mon Sep 17 00:00:00 2001
From: lichao <lichao@aiotlink.com>
Date: 星期二, 01 六月 2021 17:34:29 +0800
Subject: [PATCH] use default if request port is 0.

---
 utest/simple_tests.cpp |   22 ++++------------------
 1 files changed, 4 insertions(+), 18 deletions(-)

diff --git a/utest/simple_tests.cpp b/utest/simple_tests.cpp
index e9131b0..87933ac 100644
--- a/utest/simple_tests.cpp
+++ b/utest/simple_tests.cpp
@@ -50,12 +50,12 @@
 			typedef ShmObject<s1000> Int;
 			std::string name = std::to_string(id);
 			auto a0 = Avail();
-			Int i1(shm, name);
+			Int i1(shm, name, eOpenOrCreate);
 			auto a1 = Avail();
 			BOOST_CHECK_LT(a1, a0);
 			printf("s1000 size: %ld\n", a0 - a1);
 			i1->a[0] = 5;
-			Int i2(shm, name);
+			Int i2(shm, name, eOpenOrCreate);
 			auto a2 = Avail();
 			BOOST_CHECK_EQUAL(a1, a2);
 			BOOST_CHECK_EQUAL(i1.data(), i2.data());
@@ -104,21 +104,6 @@
 	}
 }
 
-BOOST_AUTO_TEST_CASE(TimedWaitTest)
-{
-	SharedMemory &shm = TestShm();
-	GlobalInit(shm);
-	ShmMsgQueue q(shm, NewSession(), 64);
-	for (int i = 0; i < 2; ++i) {
-		int ms = i * 100;
-		printf("Timeout Test %4d: ", ms);
-		boost::timer::auto_cpu_timer timer;
-		MsgI msg(shm);
-		bool r = q.Recv(msg, ms);
-		BOOST_CHECK(!r);
-	}
-}
-
 BOOST_AUTO_TEST_CASE(RefCountTest)
 {
 	SharedMemory &shm = TestShm();
@@ -126,7 +111,8 @@
 	GlobalInit(shm);
 
 	Msg m0(1000, shm);
-	BOOST_CHECK(m0.valid());
+	BOOST_CHECK(!m0.valid());
+	m0.Make(100);
 	BOOST_CHECK_EQUAL(m0.Count(), 1);
 	Msg m1 = m0;
 	BOOST_CHECK(m1.valid());

--
Gitblit v1.8.0