1{
2 "case": "t001",
3 "category": "targets/DEFAULT",
4 "compare_output": true,
5 "description": "The following test creates a makefile to override part\nof one Makefile with Another Makefile with the .DEFAULT\nrule.",
6 "details": "This tests the use of the .DEFAULT special target to say that \nto remake any target that cannot be made fram the information\nin the containing makefile, make should look in another makefile\nThis test gives this makefile the target bar which is not \ndefined here but passes the target bar on to another makefile\nwhich does have the target bar defined.\n",
7 "env": {},
8 "expected_exit": 0,
9 "options": "bar",
10 "options_mode": "shell",
11 "output_mode": "exact",
12 "setup": [
13 {
14 "content": "\nbar: ; @echo Executing rule BAR\n",
15 "kind": "file",
16 "mode": "0644",
17 "mtime": 1778707222,
18 "path": "defsub.mk"
19 }
20 ],
21 "source_script": "targets/DEFAULT",
22 "stdin": "",
23 "suite": "gnu",
24 "timeout_seconds": 60
25}