about summary refs log tree commit diff stats
path: root/.config/user-dirs.dirs
diff options
context:
space:
mode:
authorVitor Gonçalves <vitorg@tilde.team>2024-02-16 18:44:38 -0300
committerVitor Gonçalves <vitorg@tilde.team>2024-02-16 18:44:38 -0300
commita2afba2b354453b193c4e76340fc1bd64e69a05e (patch)
tree1ac3d31b77060eb9da73f4599ec03ba644cd59e0 /.config/user-dirs.dirs
parent3fab06c7710da6ee7021e384635e09e617f2b5da (diff)
downloaddots-a2afba2b354453b193c4e76340fc1bd64e69a05e.tar.gz
mimeapps: figma?
Diffstat (limited to '.config/user-dirs.dirs')
0 files changed, 0 insertions, 0 deletions
class='alt'>
eed17676 ^



b3d031a9 ^

eed17676 ^





dded3cb8 ^
eed17676 ^




b3d031a9 ^
eed17676 ^







b3d031a9 ^
eed17676 ^



b3d031a9 ^


eed17676 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53








                                                                      
                                           
#!/usr/bin/env zsh
# Either run the test with the given name, or rerun the most recently run test.
# Intended to be called from within Vim. Check out the vimrc.vim file.
# Unfortunately this only works with Linux at the moment. Some compiler passes
# take too long to run in emulated mode.

if [[ $2 == 'test-'* ]]
then
  TEST_NAME=$2 envsubst '$TEST_NAME' < run_one_test.subx > /tmp/run_one_test.subx
  FILES=$(ls [0-9]*.subx apps/subx-params.subx $1 |sort |uniq)
  echo $FILES > /tmp/last_run_files
elif [[ -e /tmp/last_run_files ]]
then
  FILES=$(cat /tmp/last_run_files)
else
  echo "no test found"
  exit 0  # don't open trace
fi

set -e

./translate_subx_debug init.linux $(echo $FILES) /tmp/run_one_test.subx
echo running
CFLAGS=$CFLAGS ./bootstrap --trace run a.elf