Home | History | Annotate | Download | only in tests

Lines Matching refs:ninja

32 #confirm no build.ninja file is rebuilt when no change happens
35 OLDTIME_BOOTSTRAP=$(mtime .bootstrap/build.ninja)
36 OLDTIME=$(mtime build.ninja)
41 if [ ${OLDTIME} != $(mtime build.ninja) ]; then
42 echo "unnecessary build.ninja regeneration for null build" >&2
46 if [ ${OLDTIME_BOOTSTRAP} != $(mtime .bootstrap/build.ninja) ]; then
47 echo "unnecessary .bootstrap/build.ninja regeneration for null build" >&2
51 #confirm no build.ninja file is rebuilt when a new directory is created
57 if [ ${OLDTIME} != $(mtime build.ninja) ]; then
58 echo "unnecessary build.ninja regeneration for new empty directory" >&2
61 if [ ${OLDTIME_BOOTSTRAP} != $(mtime .bootstrap/build.ninja) ]; then
62 echo "unnecessary .bootstrap/build.ninja regeneration for new empty directory" >&2
66 #confirm that build.ninja is rebuilt when a new Blueprints file is added
72 if [ ${OLDTIME} = $(mtime build.ninja) ]; then
73 echo "Failed to rebuild build.ninja for glob addition" >&2
76 if [ ${OLDTIME_BOOTSTRAP} = $(mtime .bootstrap/build.ninja) ]; then
77 echo "Failed to rebuild .bootstrap/build.ninja for glob addition" >&2
81 #confirm that build.ninja is rebuilt when a glob match is removed
82 OLDTIME=$(mtime build.ninja)
83 OLDTIME_BOOTSTRAP=$(mtime .bootstrap/build.ninja)
89 if [ ${OLDTIME} = $(mtime build.ninja) ]; then
90 echo "Failed to rebuild build.ninja for glob removal" >&2
93 if [ ${OLDTIME_BOOTSTRAP} = $(mtime .bootstrap/build.ninja) ]; then
94 echo "Failed to rebuild .bootstrap/build.ninja for glob removal" >&2
98 #confirm that build.ninja is not rebuilt when a glob match is removed
99 OLDTIME=$(mtime build.ninja)
100 OLDTIME_BOOTSTRAP=$(mtime .bootstrap/build.ninja)
106 if [ ${OLDTIME} != $(mtime build.ninja) ]; then
107 echo "unnecessary build.ninja regeneration for removal of empty directory" >&2
111 if [ ${OLDTIME_BOOTSTRAP} != $(mtime .bootstrap/build.ninja) ]; then
112 echo "unnecessary .bootstrap/build.ninja regeneration for removal of empty directory" >&2