mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
commit
d7a053305c
2 changed files with 10 additions and 12 deletions
9
Makefile
9
Makefile
|
@ -207,11 +207,6 @@ build_exe_$(1):
|
|||
${CARGO} build ${CARGOFLAGS} ${PROFILE_CMD} -p $(1)
|
||||
endef
|
||||
|
||||
define TEST_INTEGRATION
|
||||
test_integration_$(1):
|
||||
${CARGO} test ${CARGOFLAGS} --features "$(1) $(TEST_SPEC_FEATURE)" --no-default-features $(TEST_NO_FAIL_FAST)
|
||||
endef
|
||||
|
||||
define TEST_BUSYBOX
|
||||
test_busybox_$(1):
|
||||
(cd $(BUSYBOX_SRC)/testsuite && bindir=$(BUILDDIR) ./runtest $(RUNTEST_ARGS) $(1) )
|
||||
|
@ -255,10 +250,10 @@ build-uutils:
|
|||
|
||||
build: build-uutils build-pkgs
|
||||
|
||||
$(foreach test,$(TESTS),$(eval $(call TEST_INTEGRATION,$(test))))
|
||||
$(foreach test,$(filter-out $(SKIP_UTILS),$(PROGS)),$(eval $(call TEST_BUSYBOX,$(test))))
|
||||
|
||||
test: $(addprefix test_integration_,$(TESTS))
|
||||
test:
|
||||
${CARGO} test ${CARGOFLAGS} --features "$(TESTS) $(TEST_SPEC_FEATURE)" --no-default-features $(TEST_NO_FAIL_FAST)
|
||||
|
||||
busybox-src:
|
||||
if [ ! -e $(BUSYBOX_SRC) ]; then \
|
||||
|
|
13
README.md
13
README.md
|
@ -148,15 +148,21 @@ To do
|
|||
-----
|
||||
|
||||
- chcon
|
||||
- runcon
|
||||
- base32
|
||||
- md5sum
|
||||
- sha1sum
|
||||
- sha224sum
|
||||
- sha256sum
|
||||
- sha384sum
|
||||
- sha512sum
|
||||
- chgrp
|
||||
- copy
|
||||
- cp (not much done)
|
||||
- csplit
|
||||
- date
|
||||
- dd
|
||||
- df
|
||||
- expr (almost done, no regular expressions)
|
||||
- getlimits
|
||||
- join
|
||||
- ls
|
||||
- mv (almost done, one more option)
|
||||
|
@ -164,9 +170,6 @@ To do
|
|||
- od (in progress, needs lots of work)
|
||||
- pr
|
||||
- printf
|
||||
- remove
|
||||
- runcon
|
||||
- setuidgid
|
||||
- sort (a couple of options implemented)
|
||||
- split (a couple of missing options)
|
||||
- stty
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue