File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ echo " + check all files in package.xml"
3
+
4
+ for i in $( ls * .c * .h)
5
+ do
6
+ [ $i == config.h ] && continue
7
+ grep -q $i package.xml || echo missing $i
8
+ done
9
+ for i in $( find tests -type f)
10
+ do
11
+ j=$( basename $i )
12
+ [ $j == .gitignore ] && continue
13
+ grep -q $j package.xml || echo missing $j
14
+ done
Original file line number Diff line number Diff line change 82
82
<file name =" apc_entry_002.phpt" role =" test" />
83
83
<file name =" apc_entry_003.phpt" role =" test" />
84
84
<file name =" apc_inc_perf.phpt" role =" test" />
85
+ <file name =" apc_store_reference.phpt" role =" test" />
86
+ <file name =" apcu_sma_info.phpt" role =" test" />
85
87
<file name =" bug63224.phpt" role =" test" />
86
88
<file name =" bug76145.phpt" role =" test" />
87
89
<file name =" get_included_files_inc1.inc" role =" test" />
107
109
<file name =" not_enough_shm.phpt" role =" test" />
108
110
<file name =" server_test.inc" role =" test" />
109
111
<file name =" skipif.inc" role =" test" />
112
+ <file name =" sma001.phpt" role =" test" />
110
113
<file name =" data/abc.data" role =" test" />
111
114
<file name =" bad/abc.data" role =" test" />
112
115
</dir >
You can’t perform that action at this time.
0 commit comments