diff options
author | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-05-19 13:30:45 +0200 |
---|---|---|
committer | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-05-19 13:30:45 +0200 |
commit | 35c6af831cfa92b03dade7e1ff428f8fe87bea55 (patch) | |
tree | fd8bbfa51e7ce5abfe4bdd3f2829a16c2e16c108 | |
parent | c092428b53c1306252b66b51f49482650ec1f38b (diff) |
Add testing way
-rw-r--r-- | emacs/README.md | 6 | ||||
-rw-r--r-- | emacs/test-validate.sh | 29 |
2 files changed, 34 insertions, 1 deletions
diff --git a/emacs/README.md b/emacs/README.md index df72c81..69bf402 100644 --- a/emacs/README.md +++ b/emacs/README.md @@ -6,4 +6,8 @@ Requirement If is available you can use easy install - dash ~/unofficial/emacs/easy-install.sh
\ No newline at end of file + dash ~/unofficial/emacs/easy-install.sh + +- Test + + dash ~/unofficial/emacs/test-validate.sh
\ No newline at end of file diff --git a/emacs/test-validate.sh b/emacs/test-validate.sh new file mode 100644 index 0000000..efd6859 --- /dev/null +++ b/emacs/test-validate.sh @@ -0,0 +1,29 @@ +#!/bin/dash + +archlib='/home/user/Disco5/default' + +[ -d "$archlib" ] && ( cd "$archlib" && doas rm -rf * && echo 'clean environment OK' ) + +cd ~/unofficial/m17n-db/ +updpkgsums +doas libremakepkg + +cd ~/unofficial/libotf/ +updpkgsums +doas libremakepkg + +cd ~/unofficial/m17n-lib/ +updpkgsums +doas libremakepkg + +cd ~/unofficial/libisl-bin +updpkgsums +doas libremakepkg + +cd ~/unofficial/gcc/ +updpkgsums +doas libremakepkg + +cd ~/unofficial/emacs +updpkgsums +doas libremakepkg |