mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-18 00:43:47 +00:00
as written once aio_return() is successfully called. Also check the addressability of the buffer for both aio_read() and aio_write(). Also check the file descriptor for aio_read() and aio_write(). And add a test for this. There's one corner case of the test that doesn't work as expected and is currently commented out. But aio_*() certainly works better than it used to. All this is for bug 197227. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10539
31 lines
641 B
Makefile
31 lines
641 B
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = filter_stderr
|
|
|
|
noinst_HEADERS = scalar.h
|
|
|
|
EXTRA_DIST = \
|
|
aio.stderr.exp aio.vgtest \
|
|
env.stderr.exp env.vgtest \
|
|
pth-supp.stderr.exp pth-supp.vgtest \
|
|
scalar.stderr.exp scalar.vgtest \
|
|
scalar_fork.stderr.exp scalar_fork.vgtest \
|
|
scalar_nocancel.stderr.exp scalar_nocancel.vgtest \
|
|
scalar_vfork.stderr.exp scalar_vfork.vgtest
|
|
|
|
check_PROGRAMS = \
|
|
aio \
|
|
env \
|
|
pth-supp \
|
|
scalar \
|
|
scalar_fork \
|
|
scalar_nocancel \
|
|
scalar_vfork
|
|
|
|
|
|
AM_CFLAGS += @FLAG_M32@ $(FLAG_MMMX) $(FLAG_MSSE)
|
|
AM_CXXFLAGS += @FLAG_M32@ $(FLAG_MMMX) $(FLAG_MSSE)
|
|
AM_CCASFLAGS += @FLAG_M32@
|
|
|