scripts/run-regression-tests: Include the qla2xxx driver

Make sure that not only the qla2x00tgt but also the qla2xxx_scst driver
gets built when scripts/run-regression-tests is run.


git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7442 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2018-07-23 04:32:28 +00:00
parent 30d36bbfe6
commit 6864e0b759
5 changed files with 50 additions and 29 deletions
+4 -3
View File
@@ -587,7 +587,7 @@ BEGIN {
config_scst_proc_undefined = 0
# Variable initialization.
is_c_source = 0
process_file = 0
reset_hunk_state_variables()
}
@@ -599,10 +599,11 @@ BEGIN {
# Start of new file.
dump_lines()
reset_hunk_state_variables()
is_c_source = match(filename[1], "\\.[ch]$") != 0
process_file = match(filename[1], "\\.[ch]$") != 0 &&
match(filename[1], "drivers/scsi/qla2xxx/") == 0
}
if (!is_c_source)
if (!process_file)
{
print
next