Project

General

Profile

Feature #1259 ยป 0014-tests-Remove-x-prefixing.patch

Marko Lindqvist, 03/21/2025 04:02 AM

View differences:

tests/check_macros.sh
#!/bin/sh
#/***********************************************************************
# Freeciv - Copyright (C) 2011-2025
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#***********************************************************************/
files=`find $1 -name "*.c" -o -name "*.cpp" -o -name "*.h" | sort`
echo "# check for __LINE__ (should be replaced by __FC_LINE__):"
for file in $files; do
COUNT=`cat $file | grep _LINE__ | grep -v __FC_LINE__ | wc -l`
if [ "x$COUNT" != "x0" ]; then
if [ "${COUNT}" != "0" ]; then
echo $file
fi
done
tests/fcintl.sh
#!/bin/sh
#/***********************************************************************
# Freeciv - Copyright (C) 2011-2025
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#***********************************************************************/
files=`find $1 -name "*.c" -o -name "*.h" -o -name "*.cpp" | sort`
......
# print results
echo "# Check for header files including fc_config.h"
if [ "x$RES_ERR3" = "x" ]; then
if [ "${RES_ERR3}" = "" ]; then
echo "(no match)"
else
for II in $RES_ERR3; do
......
echo
echo "# Check for header files including fcintl.h"
if [ "x$RES_ERR1" = "x" ]; then
if [ "${RES_ERR1}" = "" ]; then
echo "(no match)"
else
for II in $RES_ERR1; do
......
echo
echo "# Check if fc_config.h is include when fcintl.h is used:"
if [ "x$RES_ERR2" = "x" ]; then
if [ "${RES_ERR2}" = "" ]; then
echo "(no match)"
else
for II in $RES_ERR2; do
tests/rulesets_save.sh.in
#!/usr/bin/env bash
#/***********************************************************************
# Freeciv - Copyright (C) 2017-2023
# Freeciv - Copyright (C) 2017-2025
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
......
exit 1
fi
result="`diff -u \"${resaved_path}\" \"${reresaved_path}\"`"
if test "x$result" != "x" ; then
echo "$result"
if test "${result}" != "" ; then
echo "${result}"
echo "Unstable ruleset saving."
exit 1
fi
    (1-1/1)