diff options
Diffstat (limited to 'scripts/mod/modpost.c')
| -rw-r--r-- | scripts/mod/modpost.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 620dc8c4c814..29474cee10b1 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -2191,6 +2191,9 @@ static void add_header(struct buffer *b, struct module *mod)  	if (strstarts(mod->name, "drivers/staging"))  		buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n"); + +	if (strstarts(mod->name, "tools/testing")) +		buf_printf(b, "\nMODULE_INFO(test, \"Y\");\n");  }  static void add_exported_symbols(struct buffer *buf, struct module *mod)  | 
