1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-26 16:45:12 -04:00

[tests] sh -> bash in test-ftp-parser

This commit is contained in:
Witold Filipczyk 2022-10-06 18:28:34 +02:00
parent c2e3d8fa8a
commit 58387c5a50
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,8 @@
srcs += files('ftp.c', 'parse.c')
executable('ftp-parser', 'ftp-parser.c', meson.source_root()+'/src/protocol/date.c', 'parse.c', testdeps,
c_args:['-DHAVE_CONFIG_H'], include_directories:['.','..','../..', '../../..'])
executable('ftp-parser', 'ftp-parser.c', 'parse.c', meson.source_root()+'/src/protocol/date.c', testdeps,
c_args:['-DHAVE_CONFIG_H'], cpp_args:['-DHAVE_CONFIG_H'], include_directories:['.','../..','../../..'])
test_lib = environment({'TEST_LIB': meson.source_root()+'/test/libtest.sh'})
t = find_program('test-ftp-parser')
test('ftp-parser', t, env: test_lib, workdir: meson.current_build_dir(), should_fail: true)
test('ftp-parser', t, env: test_lib, workdir: meson.current_build_dir(), is_parallel: false, should_fail: false)

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
#
# Copyright (c) 2005 Jonas Fonseca
#