Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
396f6c05
Commit
396f6c05
authored
Jan 22, 2007
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
snmpapi: Add a bunch of tests.
parent
d3e51291
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
25 additions
and
0 deletions
+25
-0
.gitignore
.gitignore
+4
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+0
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/snmpapi/tests/Makefile.in
+13
-0
util.c
dlls/snmpapi/tests/util.c
+0
-0
Makefile.in
programs/winetest/Makefile.in
+3
-0
winetest.rc
programs/winetest/winetest.rc
+1
-0
No files found.
.gitignore
View file @
396f6c05
...
...
@@ -478,6 +478,9 @@ dlls/shlwapi/tests/*.ok
dlls/shlwapi/tests/shlwapi_crosstest.exe
dlls/shlwapi/tests/testlist.c
dlls/snmpapi/libsnmpapi.def
dlls/snmpapi/tests/*.ok
dlls/snmpapi/tests/snmpapi_crosstest.exe
dlls/snmpapi/tests/testlist.c
dlls/sound.drv16
dlls/stdole2.tlb/rsrc.res
dlls/stdole2.tlb/std_ole_v2.tlb
...
...
@@ -770,6 +773,7 @@ programs/winetest/setupapi_test.exe
programs/winetest/shdocvw_test.exe
programs/winetest/shell32_test.exe
programs/winetest/shlwapi_test.exe
programs/winetest/snmpapi_test.exe
programs/winetest/urlmon_test.exe
programs/winetest/user32_test.exe
programs/winetest/usp10_test.exe
...
...
Makefile.in
View file @
396f6c05
...
...
@@ -350,6 +350,7 @@ ALL_MAKEFILES = \
dlls/shlwapi/Makefile
\
dlls/shlwapi/tests/Makefile
\
dlls/snmpapi/Makefile
\
dlls/snmpapi/tests/Makefile
\
dlls/spoolss/Makefile
\
dlls/stdole2.tlb/Makefile
\
dlls/stdole32.tlb/Makefile
\
...
...
@@ -677,6 +678,7 @@ dlls/shfolder/Makefile: dlls/shfolder/Makefile.in dlls/Makedll.rules
dlls/shlwapi/Makefile
:
dlls/shlwapi/Makefile.in dlls/Makedll.rules
dlls/shlwapi/tests/Makefile
:
dlls/shlwapi/tests/Makefile.in dlls/Maketest.rules
dlls/snmpapi/Makefile
:
dlls/snmpapi/Makefile.in dlls/Makedll.rules
dlls/snmpapi/tests/Makefile
:
dlls/snmpapi/tests/Makefile.in dlls/Maketest.rules
dlls/spoolss/Makefile
:
dlls/spoolss/Makefile.in dlls/Makedll.rules
dlls/stdole2.tlb/Makefile
:
dlls/stdole2.tlb/Makefile.in dlls/Makedll.rules
dlls/stdole32.tlb/Makefile
:
dlls/stdole32.tlb/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
396f6c05
This diff is collapsed.
Click to expand it.
configure.ac
View file @
396f6c05
...
...
@@ -1721,6 +1721,7 @@ dlls/shfolder/Makefile
dlls/shlwapi/Makefile
dlls/shlwapi/tests/Makefile
dlls/snmpapi/Makefile
dlls/snmpapi/tests/Makefile
dlls/spoolss/Makefile
dlls/stdole2.tlb/Makefile
dlls/stdole32.tlb/Makefile
...
...
dlls/Makefile.in
View file @
396f6c05
...
...
@@ -263,6 +263,7 @@ TESTSUBDIRS = \
shdocvw/tests
\
shell32/tests
\
shlwapi/tests
\
snmpapi/tests
\
urlmon/tests
\
user32/tests
\
usp10/tests
\
...
...
dlls/snmpapi/tests/Makefile.in
0 → 100644
View file @
396f6c05
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
TESTDLL
=
snmpapi.dll
IMPORTS
=
snmpapi kernel32
CTESTS
=
\
util.c
@MAKE_TEST_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/snmpapi/tests/util.c
0 → 100644
View file @
396f6c05
This diff is collapsed.
Click to expand it.
programs/winetest/Makefile.in
View file @
396f6c05
...
...
@@ -69,6 +69,7 @@ TESTBINS = \
shdocvw_test.exe
\
shell32_test.exe
\
shlwapi_test.exe
\
snmpapi_test.exe
\
urlmon_test.exe
\
user32_test.exe
\
usp10_test.exe
\
...
...
@@ -172,6 +173,8 @@ shell32_test.exe: $(DLLDIR)/shell32/tests/shell32_test.exe$(DLLEXT)
cp
$(DLLDIR)
/shell32/tests/shell32_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
shlwapi_test.exe
:
$(DLLDIR)/shlwapi/tests/shlwapi_test.exe$(DLLEXT)
cp
$(DLLDIR)
/shlwapi/tests/shlwapi_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
snmpapi_test.exe
:
$(DLLDIR)/snmpapi/tests/snmpapi_test.exe$(DLLEXT)
cp
$(DLLDIR)
/snmpapi/tests/snmpapi_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
urlmon_test.exe
:
$(DLLDIR)/urlmon/tests/urlmon_test.exe$(DLLEXT)
cp
$(DLLDIR)
/urlmon/tests/urlmon_test.exe
$(DLLEXT)
$@
&&
$(STRIP)
$@
user32_test.exe
:
$(DLLDIR)/user32/tests/user32_test.exe$(DLLEXT)
...
...
programs/winetest/winetest.rc
View file @
396f6c05
...
...
@@ -192,6 +192,7 @@ setupapi_test.exe TESTRES "setupapi_test.exe"
shdocvw_test.exe TESTRES "shdocvw_test.exe"
shell32_test.exe TESTRES "shell32_test.exe"
shlwapi_test.exe TESTRES "shlwapi_test.exe"
snmpapi_test.exe TESTRES "snmpapi_test.exe"
urlmon_test.exe TESTRES "urlmon_test.exe"
user32_test.exe TESTRES "user32_test.exe"
usp10_test.exe TESTRES "usp10_test.exe"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment