From 0dc2c9d8107b83cdc359137dcea90c7f3ba7aeb7 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Thu, 27 Jul 2017 21:05:49 -0700 Subject: [PATCH] Rename wstest source file --- CHANGELOG.md | 1 + test/wstest/CMakeLists.txt | 2 +- test/wstest/Jamfile | 4 ++-- test/wstest/{main.cpp => wstest.cpp} | 0 4 files changed, 4 insertions(+), 3 deletions(-) rename test/wstest/{main.cpp => wstest.cpp} (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8451bedb..b30daa0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ Version 91: * constexpr in derived buffers * Set BOOST_ASIO_NO_DEPRECATED * Use Asio array optimization in static_buffer_base +* Rename wstest source file WebSocket: diff --git a/test/wstest/CMakeLists.txt b/test/wstest/CMakeLists.txt index a8cf72fd..34f47321 100644 --- a/test/wstest/CMakeLists.txt +++ b/test/wstest/CMakeLists.txt @@ -17,5 +17,5 @@ add_executable (wstest ${COMMON_INCLUDES} ${EXTRAS_INCLUDES} Jamfile - main.cpp + wstest.cpp ) diff --git a/test/wstest/Jamfile b/test/wstest/Jamfile index 26f48e79..e0594cde 100644 --- a/test/wstest/Jamfile +++ b/test/wstest/Jamfile @@ -8,8 +8,8 @@ # alias wstest : - main.cpp + wstest.cpp ; explicit wstest ; -alias run-tests : [ compile main.cpp ] : : : coverage:no ubasan:no ; +alias run-tests : [ compile wstest.cpp ] : : : coverage:no ubasan:no ; diff --git a/test/wstest/main.cpp b/test/wstest/wstest.cpp similarity index 100% rename from test/wstest/main.cpp rename to test/wstest/wstest.cpp