X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Fdata%2Ftest-date-input.py;h=793bbed776a91ea56bc24f8bb4367d84c2c95eb9;hb=4d777aeacfa602840718862c31c9059e3d289eed;hp=cdab260d64773b91bfac6830a69559f78d5dfa60;hpb=123c3f55a80630655e84f97c9df558d988fa0055;p=pspp diff --git a/tests/data/test-date-input.py b/tests/data/test-date-input.py index cdab260d64..793bbed776 100644 --- a/tests/data/test-date-input.py +++ b/tests/data/test-date-input.py @@ -1,4 +1,18 @@ #! /usr/bin/env python +# Copyright (C) 2020 Free Software Foundation + +# 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 3 of the License, 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. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . import re import sys @@ -106,7 +120,7 @@ def print_all_formats(date, template, formatted, exp_y, exp_m, exp_d, 30, 31, 30, 31, 31, 30, 31, 30, 31)[exp_m] print_all_formats(date, template, formatted + ('%d' % week), exp_y, exp_m, exp_d, exp_time, exp_sign) - + elif c == 'H': for f in ('%d', '%02d'): print_all_formats(date, template, formatted + (f % hour), @@ -151,7 +165,7 @@ def print_all_formats(date, template, formatted, exp_y, exp_m, exp_d, exp_y, exp_m, exp_d, exp_time, f) else: - assert False + assert False else: # Write the formatted value to fmt_name.input. input_file.write('%s\n' % formatted) @@ -178,7 +192,7 @@ def print_all_formats(date, template, formatted, exp_y, exp_m, exp_d, expected_s = '%17.2f\n' % expected expected_s = expected_s.replace(' 0.', ' .') expout_file.write(expected_s) - + for template in templates: for date in dates: