-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.gitignore
More file actions
149 lines (130 loc) · 2.54 KB
/
.gitignore
File metadata and controls
149 lines (130 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# Apache Axis2/C .gitignore
# Excludes build artifacts, generated files, and personal configuration
# Generated pkg-config files with personal paths
axis2c.pc
deploy/lib/pkgconfig/axis2c.pc
# Build output directories
deploy/
build/
**/build/
# MkDocs generated site
site/
# CMake build artifacts
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
CTestTestfile.cmake
install_manifest.txt
# Autotools generated files
Makefile
!gtest/Makefile
Makefile.in
aclocal.m4
autom4te.cache/
config.guess
config.sub
config.h
config.h.in
config.log
config.status
configure
depcomp
install-sh
libtool
ltmain.sh
missing
stamp-h*
test-driver
compile
confdefs.h
conftest.c
conftest.err
# Build artifacts
*.o
*.lo
*.la
*.so
*.so.*
*.a
*.libs/
.deps/
.dirstamp
# Generated binaries
src/core/transport/http/server/simple_axis2_server/axis2_http_server
tools/md5/src/md5
tools/tcpmon/src/tcpmon
# Native codegen test outputs (generated code - should not be committed)
tools/codegen/native/test/output/**
tools/codegen/native/test/adb_test_runner
tools/codegen/native/test/wsdl/**
tools/codegen/native/wsdl2c-native
# Test executables (generated test binaries - specific patterns)
# Note: test/ source directories should remain trackable
**/test_*
**/*_test
**/*Test
test/Makefile
test/Makefile.in
# Specific test executables that are generated
util/test/util/test_util
util/test/util/test_thread
test/core/clientapi/test_client
test/core/clientapi/test_clientapi
test/core/clientapi/test_svc_client_handler_count
# Sample executables (comprehensive patterns)
samples/client/*/echo
samples/client/*/google
samples/client/*/math
samples/client/*/mtom*
samples/client/*/notify
samples/client/*/session
samples/client/*/version
samples/client/*/yahoosearch
samples/user_guide/clients/echo*
samples/user_guide/clients/*blocking*
samples/**/*.o
samples/**/*.lo
samples/**/*.la
# Google Test source files (copied for building unit tests)
**/gtest/gtest-all.cc
**/gtest/gtest_main.cc
# Test resources
guththila/tests/resources/
# Test and log files
axis2.log
*.log
test_*.o
wtf.txt
wtf2.txt
*.trs
# Code coverage files
*.gcno
*.gcda
*.gcov
# Test result files
test-suite.log
# Build scripts (generated)
axis2c_build.sh
bindist.sh
dist.sh
clean
# Personal/temporary files
*~
*.bak
*.swp
*.tmp
log.txt
# IDE files
.vscode/
.idea/
*.sublime-*
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
neethi/test/test
mkdocs-venv/