summaryrefslogtreecommitdiff
path: root/tomlplusplus/tools/generate_conformance_tests.py
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 21:11:23 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 21:11:23 +0300
commit4d4efac796f3c1f355de8d925daa26b69263abd3 (patch)
tree74a8f3d3f41591a4d7bcd1696c792e4f663193f6 /tomlplusplus/tools/generate_conformance_tests.py
parentad3e782536599445e9ed066987f26b09981ed063 (diff)
downloadProject-Tick-4d4efac796f3c1f355de8d925daa26b69263abd3.tar.gz
Project-Tick-4d4efac796f3c1f355de8d925daa26b69263abd3.zip
NOISSUE Add various license files and update REUSE configuration
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'tomlplusplus/tools/generate_conformance_tests.py')
-rwxr-xr-xtomlplusplus/tools/generate_conformance_tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tomlplusplus/tools/generate_conformance_tests.py b/tomlplusplus/tools/generate_conformance_tests.py
index 0da53ffb8a..7b2b3cf095 100755
--- a/tomlplusplus/tools/generate_conformance_tests.py
+++ b/tomlplusplus/tools/generate_conformance_tests.py
@@ -541,7 +541,7 @@ def write_test_file(name, all_tests):
test_file_path = Path(utils.entry_script_dir(), '..', 'tests', rf'conformance_{sanitize(name.strip())}.cpp').resolve()
with StringIO() as test_file_buffer:
write = lambda txt,end='\n': print(txt, file=test_file_buffer, end=end)
-
+# REUSE-IgnoreStart
# preamble
write(r'// This file is a part of toml++ and is subject to the the terms of the MIT license.')
write(r'// Copyright (c) Mark Gillard <mark.gillard@outlook.com.au>')
@@ -551,7 +551,7 @@ def write_test_file(name, all_tests):
write(r'// this file was generated by generate_conformance_tests.py - do not modify it directly')
write(r'')
write(r'#include "tests.hpp"')
-
+# REUSE-IgnoreEnd
# test data
write(r'')
write('namespace')