mirror of
https://github.com/mirror/make.git
synced 2025-01-15 06:40:17 +08:00
Enhancement (bug #2407) Make error messages more clear.
This commit is contained in:
parent
d33ff30145
commit
b7c728046e
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2003-01-30 Paul D. Smith <psmith@gnu.org>
|
||||||
|
|
||||||
|
* function.c (check_numeric): Combine the is_numeric() function
|
||||||
|
into this function, since it's only called from one place.
|
||||||
|
Constify this function. Have it print the incorrect string in the
|
||||||
|
error message. Fixes bug #2407.
|
||||||
|
(strip_whitespace): Constify.
|
||||||
|
(func_if): Constify.
|
||||||
|
* expand.c (expand_argument): Constify.
|
||||||
|
|
||||||
2003-01-29 Paul D. Smith <psmith@gnu.org>
|
2003-01-29 Paul D. Smith <psmith@gnu.org>
|
||||||
|
|
||||||
Fix bug # 2169, also reported by other people on various systems.
|
Fix bug # 2169, also reported by other people on various systems.
|
||||||
|
8
expand.c
8
expand.c
@ -411,7 +411,7 @@ variable_expand (char *line)
|
|||||||
variable-expansion that is in progress. */
|
variable-expansion that is in progress. */
|
||||||
|
|
||||||
char *
|
char *
|
||||||
expand_argument (char *str, char *end)
|
expand_argument (const char *str, const char *end)
|
||||||
{
|
{
|
||||||
char *tmp;
|
char *tmp;
|
||||||
|
|
||||||
@ -419,13 +419,11 @@ expand_argument (char *str, char *end)
|
|||||||
return xstrdup("");
|
return xstrdup("");
|
||||||
|
|
||||||
if (!end || *end == '\0')
|
if (!end || *end == '\0')
|
||||||
tmp = str;
|
return allocated_variable_expand ((char *)str);
|
||||||
else
|
|
||||||
{
|
|
||||||
tmp = (char *) alloca (end - str + 1);
|
tmp = (char *) alloca (end - str + 1);
|
||||||
bcopy (str, tmp, end - str);
|
bcopy (str, tmp, end - str);
|
||||||
tmp[end - str] = '\0';
|
tmp[end - str] = '\0';
|
||||||
}
|
|
||||||
|
|
||||||
return allocated_variable_expand (tmp);
|
return allocated_variable_expand (tmp);
|
||||||
}
|
}
|
||||||
|
36
function.c
36
function.c
@ -673,35 +673,29 @@ func_words (char *o, char **argv, const char *funcname)
|
|||||||
return o;
|
return o;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *
|
static char *
|
||||||
strip_whitespace (char **begpp, char **endpp)
|
strip_whitespace (const char **begpp, const char **endpp)
|
||||||
{
|
{
|
||||||
while (isspace ((unsigned char)**begpp) && *begpp <= *endpp)
|
while (isspace ((unsigned char)**begpp) && *begpp <= *endpp)
|
||||||
(*begpp) ++;
|
(*begpp) ++;
|
||||||
while (isspace ((unsigned char)**endpp) && *endpp >= *begpp)
|
while (isspace ((unsigned char)**endpp) && *endpp >= *begpp)
|
||||||
(*endpp) --;
|
(*endpp) --;
|
||||||
return *begpp;
|
return (char *)*begpp;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static void
|
||||||
is_numeric (char *p)
|
check_numeric (const char *s, const char *message)
|
||||||
{
|
{
|
||||||
char *end = p + strlen (p) - 1;
|
const char *end = s + strlen (s) - 1;
|
||||||
char *beg = p;
|
const char *beg = s;
|
||||||
strip_whitespace (&p, &end);
|
strip_whitespace (&s, &end);
|
||||||
|
|
||||||
while (p <= end)
|
for (; s <= end; ++s)
|
||||||
if (!ISDIGIT (*(p++))) /* ISDIGIT only evals its arg once: see make.h. */
|
if (!ISDIGIT (*s)) /* ISDIGIT only evals its arg once: see make.h. */
|
||||||
return 0;
|
break;
|
||||||
|
|
||||||
return (end - beg >= 0);
|
if (s <= end || end - beg < 0)
|
||||||
}
|
fatal (reading_file, "%s: '%s'", message, beg);
|
||||||
|
|
||||||
void
|
|
||||||
check_numeric (char *s, char *message)
|
|
||||||
{
|
|
||||||
if (!is_numeric (s))
|
|
||||||
fatal (reading_file, message);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -1134,8 +1128,8 @@ func_sort (char *o, char **argv, const char *funcname)
|
|||||||
static char *
|
static char *
|
||||||
func_if (char *o, char **argv, const char *funcname)
|
func_if (char *o, char **argv, const char *funcname)
|
||||||
{
|
{
|
||||||
char *begp = argv[0];
|
const char *begp = argv[0];
|
||||||
char *endp = begp + strlen (argv[0]);
|
const char *endp = begp + strlen (argv[0]);
|
||||||
int result = 0;
|
int result = 0;
|
||||||
|
|
||||||
/* Find the result of the condition: if we have a value, and it's not
|
/* Find the result of the condition: if we have a value, and it's not
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2003-01-30 Paul D. Smith <psmith@gnu.org>
|
||||||
|
|
||||||
|
* scripts/functions/word: Test error handling for word and
|
||||||
|
wordlist functions (bug #2407).
|
||||||
|
|
||||||
2003-01-22 Paul D. Smith <psmith@gnu.org>
|
2003-01-22 Paul D. Smith <psmith@gnu.org>
|
||||||
|
|
||||||
* scripts/functions/call: Test recursive argument masking (bug
|
* scripts/functions/call: Test recursive argument masking (bug
|
||||||
|
@ -6,9 +6,6 @@ Produce a variable with a large number of words in it,
|
|||||||
determine the number of words, and then read each one back.\n";
|
determine the number of words, and then read each one back.\n";
|
||||||
|
|
||||||
open(MAKEFILE,"> $makefile");
|
open(MAKEFILE,"> $makefile");
|
||||||
|
|
||||||
# The Contents of the MAKEFILE ...
|
|
||||||
|
|
||||||
print MAKEFILE <<'EOF';
|
print MAKEFILE <<'EOF';
|
||||||
string := word.pl general_test2.pl FORCE.pl word.pl generic_test.perl MAKEFILES_variable.pl
|
string := word.pl general_test2.pl FORCE.pl word.pl generic_test.perl MAKEFILES_variable.pl
|
||||||
string2 := $(string) $(string) $(string) $(string) $(string) $(string) $(string)
|
string2 := $(string) $(string) $(string) $(string) $(string) $(string) $(string)
|
||||||
@ -28,18 +25,9 @@ all:
|
|||||||
@echo $(wordlist 100, 110, $(string))
|
@echo $(wordlist 100, 110, $(string))
|
||||||
@echo $(wordlist 7, 10, $(string2))
|
@echo $(wordlist 7, 10, $(string2))
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# END of Contents of MAKEFILE
|
|
||||||
|
|
||||||
close(MAKEFILE);
|
close(MAKEFILE);
|
||||||
|
|
||||||
&run_make_with_options($makefile, "", &get_logfile);
|
&run_make_with_options($makefile, "", &get_logfile);
|
||||||
|
|
||||||
# Create the answer to what should be produced by this Makefile
|
|
||||||
|
|
||||||
# COMPARE RESULTS
|
|
||||||
$answer = "6\n"
|
$answer = "6\n"
|
||||||
."2058\n"
|
."2058\n"
|
||||||
."word.pl\n"
|
."word.pl\n"
|
||||||
@ -51,13 +39,52 @@ $answer = "6\n"
|
|||||||
."word.pl general_test2.pl FORCE.pl word.pl generic_test.perl MAKEFILES_variable.pl\n"
|
."word.pl general_test2.pl FORCE.pl word.pl generic_test.perl MAKEFILES_variable.pl\n"
|
||||||
."generic_test.perl MAKEFILES_variable.pl\n"
|
."generic_test.perl MAKEFILES_variable.pl\n"
|
||||||
."\n"
|
."\n"
|
||||||
."word.pl general_test2.pl FORCE.pl word.pl\n"
|
."word.pl general_test2.pl FORCE.pl word.pl\n";
|
||||||
;
|
&compare_output($answer, &get_logfile(1));
|
||||||
|
|
||||||
# In this call to compare output, you should use the call &get_logfile(1)
|
|
||||||
# to send the name of the last logfile created. You may also use
|
|
||||||
# the special call &get_logfile(1) which returns the same as &get_logfile(1).
|
|
||||||
|
|
||||||
|
# Test error conditions
|
||||||
|
|
||||||
|
$makefile2 = &get_tmpfile;
|
||||||
|
|
||||||
|
open(MAKEFILE, "> $makefile2");
|
||||||
|
print MAKEFILE <<'EOF';
|
||||||
|
FOO = foo bar biz baz
|
||||||
|
|
||||||
|
word-e1: ; @echo $(word ,$(FOO))
|
||||||
|
word-e2: ; @echo $(word abc ,$(FOO))
|
||||||
|
word-e3: ; @echo $(word 1a,$(FOO))
|
||||||
|
|
||||||
|
wordlist-e1: ; @echo $(wordlist ,,$(FOO))
|
||||||
|
wordlist-e2: ; @echo $(wordlist abc ,,$(FOO))
|
||||||
|
wordlist-e3: ; @echo $(wordlist 1, 12a ,$(FOO))
|
||||||
|
|
||||||
|
EOF
|
||||||
|
|
||||||
|
close(MAKEFILE);
|
||||||
|
|
||||||
|
&run_make_with_options($makefile2, 'word-e1', &get_logfile, 512);
|
||||||
|
$answer = "$makefile2:3: *** non-numeric first argument to `word' function: ''. Stop.\n";
|
||||||
|
&compare_output($answer, &get_logfile(1));
|
||||||
|
|
||||||
|
&run_make_with_options($makefile2, 'word-e2', &get_logfile, 512);
|
||||||
|
$answer = "$makefile2:4: *** non-numeric first argument to `word' function: 'abc '. Stop.\n";
|
||||||
|
&compare_output($answer, &get_logfile(1));
|
||||||
|
|
||||||
|
&run_make_with_options($makefile2, 'word-e3', &get_logfile, 512);
|
||||||
|
$answer = "$makefile2:5: *** non-numeric first argument to `word' function: '1a'. Stop.\n";
|
||||||
|
&compare_output($answer, &get_logfile(1));
|
||||||
|
|
||||||
|
&run_make_with_options($makefile2, 'wordlist-e1', &get_logfile, 512);
|
||||||
|
$answer = "$makefile2:7: *** non-numeric first argument to `wordlist' function: ''. Stop.\n";
|
||||||
|
&compare_output($answer, &get_logfile(1));
|
||||||
|
|
||||||
|
&run_make_with_options($makefile2, 'wordlist-e2', &get_logfile, 512);
|
||||||
|
$answer = "$makefile2:8: *** non-numeric first argument to `wordlist' function: 'abc '. Stop.\n";
|
||||||
|
&compare_output($answer, &get_logfile(1));
|
||||||
|
|
||||||
|
&run_make_with_options($makefile2, 'wordlist-e3', &get_logfile, 512);
|
||||||
|
$answer = "$makefile2:9: *** non-numeric second argument to `wordlist' function: ' 12a '. Stop.\n";
|
||||||
&compare_output($answer, &get_logfile(1));
|
&compare_output($answer, &get_logfile(1));
|
||||||
|
|
||||||
# This tells the test driver that the perl test script executed properly.
|
# This tells the test driver that the perl test script executed properly.
|
||||||
|
@ -104,7 +104,7 @@ extern char *variable_expand PARAMS ((char *line));
|
|||||||
extern char *allocated_variable_expand_for_file PARAMS ((char *line, struct file *file));
|
extern char *allocated_variable_expand_for_file PARAMS ((char *line, struct file *file));
|
||||||
#define allocated_variable_expand(line) \
|
#define allocated_variable_expand(line) \
|
||||||
allocated_variable_expand_for_file (line, (struct file *) 0)
|
allocated_variable_expand_for_file (line, (struct file *) 0)
|
||||||
extern char *expand_argument PARAMS ((char *str, char *end));
|
extern char *expand_argument PARAMS ((const char *str, const char *end));
|
||||||
extern char *variable_expand_string PARAMS ((char *line, char *string,
|
extern char *variable_expand_string PARAMS ((char *line, char *string,
|
||||||
long length));
|
long length));
|
||||||
extern void install_variable_buffer PARAMS ((char **bufp, unsigned int *lenp));
|
extern void install_variable_buffer PARAMS ((char **bufp, unsigned int *lenp));
|
||||||
|
Loading…
Reference in New Issue
Block a user