We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 721f378 commit ca258eeCopy full SHA for ca258ee
Makefile
@@ -307,6 +307,17 @@ remove_lib_wrapped:
307
remove_locales_wrapped:
308
for f in $(LANGUAGES); do $(RM) $(DESTDIR)$(LOCALEDIR)/$$f/LC_MESSAGES/$(PACKAGE).mo; done
309
310
+check:
311
+ @echo "Running tests..."
312
+ # Set LD_LIBRARY_PATH to include the current directory
313
+ @export LDFLAGS="-Wl,-rpath,$(CURDIR)"; \
314
+ export LD_LIBRARY_PATH=$(CURDIR):$$LD_LIBRARY_PATH; \
315
+ for test in tests/*.sh; do \
316
+ echo "Executing $$test..."; \
317
+ bash $$test || echo "$$test failed"; \
318
+ done
319
+ @echo "Tests completed!"
320
+
321
clean:
322
$(RM) $(PROJ) $(POTFILE) $(MOFILES) *.o
323
0 commit comments