mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
Tests: Merge duplicate TestFormat test into AK directory
This commit is contained in:
parent
18b3334738
commit
4bfd394384
4 changed files with 11 additions and 50 deletions
|
@ -294,4 +294,15 @@ TEST_CASE(use_format_string_formatter)
|
||||||
EXPECT_EQ(String::formatted("{:*<10}", C { 42 }), "C(i=42)***");
|
EXPECT_EQ(String::formatted("{:*<10}", C { 42 }), "C(i=42)***");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_CASE(long_long_regression)
|
||||||
|
{
|
||||||
|
EXPECT_EQ(String::formatted("{}", 0x0123456789abcdefLL), "81985529216486895");
|
||||||
|
|
||||||
|
StringBuilder builder;
|
||||||
|
AK::FormatBuilder fmtbuilder { builder };
|
||||||
|
fmtbuilder.put_i64(0x0123456789abcdefLL);
|
||||||
|
|
||||||
|
EXPECT_EQ(builder.string_view(), "81985529216486895");
|
||||||
|
}
|
||||||
|
|
||||||
TEST_MAIN(Format)
|
TEST_MAIN(Format)
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
file(GLOB CMD_SOURCES CONFIGURE_DEPENDS "*.cpp")
|
|
||||||
|
|
||||||
foreach(CMD_SRC ${CMD_SOURCES})
|
|
||||||
get_filename_component(CMD_NAME ${CMD_SRC} NAME_WE)
|
|
||||||
add_executable(${CMD_NAME}_Userland ${CMD_SRC})
|
|
||||||
set_target_properties(${CMD_NAME}_Userland PROPERTIES OUTPUT_NAME ${CMD_NAME})
|
|
||||||
target_link_libraries(${CMD_NAME}_Userland LibCore)
|
|
||||||
install(TARGETS ${CMD_NAME}_Userland RUNTIME DESTINATION usr/Tests/AK)
|
|
||||||
endforeach()
|
|
|
@ -1,40 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (c) 2021, the SerenityOS developers.
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions are met:
|
|
||||||
*
|
|
||||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
||||||
* list of conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
||||||
* this list of conditions and the following disclaimer in the documentation
|
|
||||||
* and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
||||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
||||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
||||||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
||||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
||||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
||||||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
||||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <AK/TestSuite.h>
|
|
||||||
|
|
||||||
TEST_CASE(long_long_regression)
|
|
||||||
{
|
|
||||||
EXPECT_EQ(String::formatted("{}", 0x0123456789abcdefLL), "81985529216486895");
|
|
||||||
|
|
||||||
StringBuilder builder;
|
|
||||||
AK::FormatBuilder fmtbuilder { builder };
|
|
||||||
fmtbuilder.put_i64(0x0123456789abcdefLL);
|
|
||||||
|
|
||||||
EXPECT_EQ(builder.string_view(), "81985529216486895");
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST_MAIN(Format)
|
|
|
@ -1,4 +1,3 @@
|
||||||
add_subdirectory(AK)
|
|
||||||
add_subdirectory(Kernel)
|
add_subdirectory(Kernel)
|
||||||
add_subdirectory(LibC)
|
add_subdirectory(LibC)
|
||||||
add_subdirectory(LibGfx)
|
add_subdirectory(LibGfx)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue