Skip to content

Commit

Permalink
Applied updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz committed Aug 26, 2022
1 parent 389b8c6 commit 800a5f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ build_script:
.\build.ps1 -VisualStudioVersion 2019 -VSToolsOptions "--extend-with-x64 --no-python-dll --with-dokany" }
- sh: if test ${BUILD_ENVIRONMENT} = "xcode" || test ${BUILD_ENVIRONMENT} = "python"; then export PATH="/usr/local/opt/gettext/bin:$PATH"; export SED="/usr/local/bin/gsed"; tests/build.sh ${CONFIGURE_OPTIONS}; fi
- cmd: if [%BUILD_ENVIRONMENT%]==[python] (
"%PYTHON%" setup.py bdist_msi bdist_wheel )
"%PYTHON%" setup.py bdist_wheel )
- sh: if test ${BUILD_ENVIRONMENT} = "python"; then ${PYTHON} setup.py bdist_wheel; fi
- cmd: if [%BUILD_ENVIRONMENT%]==[cygwin] (
xcopy /i /q /s C:\projects\libesedb C:\cygwin\home\appveyor\libesedb &&
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ AC_PREREQ([2.71])

AC_INIT(
[libesedb],
[20220808],
[20220826],
[joachim.metz@gmail.com])

AC_CONFIG_SRCDIR(
Expand Down
8 changes: 2 additions & 6 deletions runtests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Script that runs the tests
#
# Version: 20220807
# Version: 20220819

EXIT_SUCCESS=0;
EXIT_FAILURE=1;
Expand Down Expand Up @@ -83,12 +83,8 @@ run_configure_make_check_with_asan()
then
return ${EXIT_SUCCESS};
fi
# Using libasan is platform dependent.
if test ${LIBASAN} != "/lib64/libasan.so.4" && test ${LIBASAN} != "/lib64/libasan.so.5";
then
return ${EXIT_SUCCESS};
fi

# Using libasan is platform dependent.
export CPPFLAGS="-DHAVE_ASAN";
export CFLAGS="-fno-omit-frame-pointer -fsanitize=address -g";
export LDFLAGS="-fsanitize=address -g";
Expand Down

0 comments on commit 800a5f0

Please sign in to comment.