Skip to content

Commit 8c01425

Browse files
committed
Merge remote-tracking branch 'origin/refs/pull/259/head'
2 parents b0c2bc5 + ad517a2 commit 8c01425

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

regress/GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include $(d)/../GNUmakefile
1212
.PHONY: $(d)/check check
1313

1414
$(d)/check:
15-
@for V in 5.1 5.2 5.3; do \
15+
@for V in 5.1 5.2 5.3 5.4; do \
1616
printf "Building $${V}... "; \
1717
if (cd $(@D) && ./regress.sh -r"$${V}" build >/dev/null 2>&1); then \
1818
printf "OK\n"; \

regress/regress.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,17 @@ lua52path="${CQUEUES_SRCDIR}/regress/.local/share/5.2"
7070
lua52cpath="${CQUEUES_SRCDIR}/regress/.local/lib/5.2"
7171
lua53path="${CQUEUES_SRCDIR}/regress/.local/share/5.3"
7272
lua53cpath="${CQUEUES_SRCDIR}/regress/.local/lib/5.3"
73+
lua54path="${CQUEUES_SRCDIR}/regress/.local/share/5.4"
74+
lua54cpath="${CQUEUES_SRCDIR}/regress/.local/lib/5.4"
7375

7476
export LUA_PATH="${lua51path}/?.lua;${CQUEUES_SRCDIR}/regress/?.lua;${LUA_PATH:-;}"
7577
export LUA_CPATH="${lua51cpath}/?.so;${LUA_CPATH:-;}"
7678
export LUA_PATH_5_2="${lua52path}/?.lua;${CQUEUES_SRCDIR}/regress/?.lua;${LUA_PATH_5_2:-;}"
7779
export LUA_CPATH_5_2="${lua52cpath}/?.so;${LUA_CPATH_5_2:-;}"
7880
export LUA_PATH_5_3="${lua53path}/?.lua;${CQUEUES_SRCDIR}/regress/?.lua;${LUA_PATH_5_3:-;}"
7981
export LUA_CPATH_5_3="${lua53cpath}/?.so;${LUA_CPATH_5_3:-;}"
82+
export LUA_PATH_5_4="${lua54path}/?.lua;${CQUEUES_SRCDIR}/regress/?.lua;${LUA_PATH_5_4:-;}"
83+
export LUA_CPATH_5_4="${lua54cpath}/?.so;${LUA_CPATH_5_4:-;}"
8084

8185

8286
if [ "${0##*/}" = "regress.sh" ]; then
@@ -87,7 +91,8 @@ if [ "${0##*/}" = "regress.sh" ]; then
8791
(cd "${CQUEUES_SRCDIR}" && make -s "install${LUA_API}" \
8892
lua51path="${lua51path}" lua51cpath="${lua51cpath}" \
8993
lua52path="${lua52path}" lua52cpath="${lua52cpath}" \
90-
lua53path="${lua53path}" lua53cpath="${lua53cpath}")
94+
lua53path="${lua53path}" lua53cpath="${lua53cpath}" \
95+
lua54path="${lua54path}" lua54cpath="${lua54cpath}")
9196
exit $?
9297
;;
9398
*)
@@ -102,7 +107,8 @@ else
102107
(cd "${CQUEUES_SRCDIR}" && make -s install \
103108
lua51path="${lua51path}" lua51cpath="${lua51cpath}" \
104109
lua52path="${lua52path}" lua52cpath="${lua52cpath}" \
105-
lua53path="${lua53path}" lua53cpath="${lua53cpath}")
110+
lua53path="${lua53path}" lua53cpath="${lua53cpath}" \
111+
lua54path="${lua54path}" lua54cpath="${lua54cpath}")
106112
fi
107113

108114
if [ ! -d "${CQUEUES_SRCDIR}/regress/.local/lib/5.3" ] || ! runlua -e 'require"_cqueues"' >>/dev/null 2>&1; then

0 commit comments

Comments
 (0)