diff options
| author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-05-07 09:42:09 +0200 |
|---|---|---|
| committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-05-13 18:15:46 +0200 |
| commit | d093c5555ec439affcfbecdceabfb122aa8c2f73 (patch) | |
| tree | de148388b0382d87bcc2caed72625e3dec829bda /Makefile | |
| parent | ebb0837588336e32fc1258a3838673afdd31ee71 (diff) | |
| download | lanes-d093c5555ec439affcfbecdceabfb122aa8c2f73.tar.gz lanes-d093c5555ec439affcfbecdceabfb122aa8c2f73.tar.bz2 lanes-d093c5555ec439affcfbecdceabfb122aa8c2f73.zip | |
Some more code refactorization
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
| @@ -72,6 +72,7 @@ rock: | |||
| 72 | #--- Testing --- | 72 | #--- Testing --- |
| 73 | # | 73 | # |
| 74 | test: | 74 | test: |
| 75 | $(MAKE) appendud | ||
| 75 | $(MAKE) atexit | 76 | $(MAKE) atexit |
| 76 | $(MAKE) atomic | 77 | $(MAKE) atomic |
| 77 | $(MAKE) basic | 78 | $(MAKE) basic |
| @@ -94,6 +95,7 @@ test: | |||
| 94 | $(MAKE) recursive | 95 | $(MAKE) recursive |
| 95 | $(MAKE) rupval | 96 | $(MAKE) rupval |
| 96 | $(MAKE) timer | 97 | $(MAKE) timer |
| 98 | $(MAKE) track_lanes | ||
| 97 | 99 | ||
| 98 | appendud: tests/appendud.lua $(_TARGET_SO) | 100 | appendud: tests/appendud.lua $(_TARGET_SO) |
| 99 | $(_PREFIX) $(LUA) $< | 101 | $(_PREFIX) $(LUA) $< |
| @@ -155,6 +157,9 @@ launchtest: tests/launchtest.lua $(_TARGET_SO) | |||
| 155 | linda_perf: tests/linda_perf.lua $(_TARGET_SO) | 157 | linda_perf: tests/linda_perf.lua $(_TARGET_SO) |
| 156 | $(_PREFIX) $(LUA) $< | 158 | $(_PREFIX) $(LUA) $< |
| 157 | 159 | ||
| 160 | manual_register: tests/manual_register.lua $(_TARGET_SO) | ||
| 161 | $(_PREFIX) $(LUA) $< | ||
| 162 | |||
| 158 | objects: tests/objects.lua $(_TARGET_SO) | 163 | objects: tests/objects.lua $(_TARGET_SO) |
| 159 | $(_PREFIX) $(LUA) $< | 164 | $(_PREFIX) $(LUA) $< |
| 160 | 165 | ||
| @@ -179,6 +184,14 @@ pingpong: tests/pingpong.lua $(_TARGET_SO) | |||
| 179 | recursive: tests/recursive.lua $(_TARGET_SO) | 184 | recursive: tests/recursive.lua $(_TARGET_SO) |
| 180 | $(_PREFIX) $(LUA) $< | 185 | $(_PREFIX) $(LUA) $< |
| 181 | 186 | ||
| 187 | rupval: tests/rupval.lua $(_TARGET_SO) | ||
| 188 | $(_PREFIX) $(LUA) $< | ||
| 189 | |||
| 190 | timer: tests/timer.lua $(_TARGET_SO) | ||
| 191 | $(_PREFIX) $(LUA) $< | ||
| 192 | |||
| 193 | track_lanes: tests/track_lanes.lua $(_TARGET_SO) | ||
| 194 | $(_PREFIX) $(LUA) $< | ||
| 182 | # | 195 | # |
| 183 | # This tries to show out a bug which happens in lane cleanup (multicore CPU's only) | 196 | # This tries to show out a bug which happens in lane cleanup (multicore CPU's only) |
| 184 | # | 197 | # |
