From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/boost/tools/build/test/example_gettext.py | 30 +++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/boost/tools/build/test/example_gettext.py (limited to 'src/boost/tools/build/test/example_gettext.py') diff --git a/src/boost/tools/build/test/example_gettext.py b/src/boost/tools/build/test/example_gettext.py new file mode 100644 index 000000000..346070203 --- /dev/null +++ b/src/boost/tools/build/test/example_gettext.py @@ -0,0 +1,30 @@ +#!/usr/bin/python + +# Copyright (C) Vladimir Prus 2006. +# Distributed under the Boost Software License, Version 1.0. (See +# accompanying file LICENSE.txt or copy at +# https://www.bfgroup.xyz/b2/LICENSE.txt) + +# Test the 'gettext' example. + +import BoostBuild +import os +import string + +t = BoostBuild.Tester() + +t.set_tree("../example/gettext") + +t.run_build_system(stderr=None) + +t.expect_addition(["bin/$toolset/debug*/main.exe", + "bin/$toolset/debug*/russian.mo"]) + +file = t.adjust_names(["bin/$toolset/debug*/main.exe"])[0] + +input_fd = os.popen(file) +input = input_fd.read(); + +t.fail_test(input.find("international hello") != 0) + +t.cleanup() -- cgit v1.2.3