Repo init with mostly unchanged import of LW code
This commit is contained in:
commit
221f0c8ef8
161 changed files with 61414 additions and 0 deletions
.vim.local/scripts
2
.vim.local/scripts/vimmake.build
Executable file
2
.vim.local/scripts/vimmake.build
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
make -j 8 all
|
2
.vim.local/scripts/vimmake.clean
Executable file
2
.vim.local/scripts/vimmake.clean
Executable file
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
make clean-extra
|
3
.vim.local/scripts/vimmake.rebuild
Executable file
3
.vim.local/scripts/vimmake.rebuild
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
make clean-extra
|
||||
make -j 8 all
|
14
.vim.local/scripts/vimmake.test
Executable file
14
.vim.local/scripts/vimmake.test
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
if [ "$VIM_RELDIR" = "tests" ] && [ "$VIM_FILEEXT" = ".cc" ]; then
|
||||
if make -j 8 all; then
|
||||
if [ -f "output/fast/test-$VIM_FILENOEXT" ]; then
|
||||
LD_LIBRARY_PATH=./output/fast \
|
||||
./output/fast/test-$VIM_FILENOEXT 2>&1 \
|
||||
| sed -e s/"$VIM_FILENAME"/'tests\/'"$VIM_FILENAME"/g
|
||||
else
|
||||
LD_LIBRARY_PATH=./output/fast \
|
||||
./output/fast/run-all-tests 2>&1 \
|
||||
| sed -e 's/^\([a-z\-]\+\.cc\)/tests\/\1/g'
|
||||
fi
|
||||
fi
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue