/usr/share/gps/plug-ins/gnattest.xml is in gnat-gps-common 5.3dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | <?xml version="1.0" encoding="utf-8"?>
<!-- This file adds support for the gnattest utility. -->
<gnattest>
<project_attribute package="gnattest"
name="harness_dir"
editor_page="GNATtest"
editor_section="Directories"
label="Harness Directory"
description="is used to specify the directory in which to place harness packages and project file for the test driver"
hide_in="wizard library_wizard"
>
<string type="directory" default="gnattest/harness"/>
</project_attribute>
<project_attribute package="gnattest"
name="tests_dir"
editor_page="GNATtest"
editor_section="Directories"
disable_if_not_set="true"
disable="gnattest.tests_root gnattest.stub_subdir"
label="Tests Directory"
description="Test files are put in given directory"
hide_in="wizard library_wizard"
>
<string default="gnatest/tests"/>
</project_attribute>
<project_attribute package="gnattest"
name="tests_root"
editor_page="GNATtest"
editor_section="Directories"
disable_if_not_set="true"
disable="gnattest.tests_dir gnattest.stub_subdir"
label="Tests Root"
description="Test files are put in a same directory hierarchy as the sources with this directory as the root directory."
hide_in="wizard library_wizard"
/>
<project_attribute package="gnattest"
name="stub_subdir"
editor_page="GNATtest"
editor_section="Directories"
disable_if_not_set="true"
disable="gnattest.tests_dir gnattest.tests_root"
label="Stub Subdir"
description="Test packages are placed in subdirectories"
hide_in="wizard library_wizard"
>
</project_attribute>
<project_attribute package="gnattest"
name="additional_tests"
editor_page="GNATtest"
label="Additional Tests"
description="Sources described in given project are considered potential additional manual tests to be added to the test suite."
hide_in="wizard library_wizard"
>
<string type="file" filter="project"/>
</project_attribute>
<project_attribute package="gnattest"
name="stubs_default"
editor_page="GNATtest"
label="Stubs Default"
description="Default behavior of generated stubs."
hide_in="wizard library_wizard"
>
<choice default="true">fail</choice>
<choice>pass</choice>
</project_attribute>
<project_attribute package="gnattest"
name="gnattest_switches"
editor_page="GNATtest"
list="true"
label="GNATtest Switches"
description="Custom switches for gnattest."
hide_in="wizard library_wizard"
>
<string default=""/>
</project_attribute>
<project_attribute package="gnattest"
name="gnattest_mapping_file"
hide_in="all"
editor_page="GNATtest"
label="GNATtest Mapping File"
description="Map tests to subprograms."
/>
<action name="run gnattest">
<filter_and>
<filter id="Project only"/>
<filter id="Non harness project"/>
</filter_and>
<description>Run gnattest on current project</description>
<shell lang="python" output="none"
>gnattest.run(GPS.current_context().project(), "GNATtest for project")</shell>
</action>
<action name="run gnattest recursive">
<filter_and>
<filter id="Project only"/>
<filter id="Non harness project"/>
</filter_and>
<description>Run gnattest on current project and subprojects</description>
<shell lang="python" output="none"
>gnattest.run(GPS.current_context().project(), "GNATtest for project", "-r")</shell>
</action>
<action name="run gnattest on root">
<filter_and>
<filter id="Non harness project"/>
</filter_and>
<description>Run gnattest on root project</description>
<shell lang="python" output="none"
>gnattest.run(GPS.Project.root(), "GNATtest for root project")</shell>
</action>
<action name="run gnattest on root recursive">
<filter_and>
<filter id="Non harness project"/>
</filter_and>
<description>Run gnattest on root project and subprojects</description>
<shell lang="python" output="none"
>gnattest.run(GPS.Project.root(), "GNATtest for root project", "-r")</shell>
</action>
<action name="open harness" output="none">
<filter_and>
<filter id="Harness project exists"/>
<filter id="Non harness project"/>
</filter_and>
<description>Open harness project for current project</description>
<shell lang="python">gnattest.open_harness_project(GPS.current_context().project())</shell>
</action>
<action name="exit harness" output="none">
<filter id="Harness project"/>
<description>Return to user project from current harness project</description>
<shell lang="python">gnattest.exit_harness_project()</shell>
</action>
<action name="make single test" output="none">
<filter_and>
<filter id="Library package declaration"/>
<filter id="Non harness project"/>
</filter_and>
<description>Run gnattest on single package</description>
<shell lang="python" output="none"
>gnattest.run(GPS.current_context().project(), "GNATtest for file")</shell>
</action>
<submenu after="Documentation">
<title>Tools/GNATtest</title>
<menu action="run gnattest on root">
<title>Generate unit test setup</title>
</menu>
<menu action="run gnattest on root recursive">
<title>Generate unit test setup recursive</title>
</menu>
<menu action="Show not implemented tests">
<title>Show not implemented tests</title>
</menu>
<menu action="open harness">
<title>Open harness project</title>
</menu>
<menu action="exit harness">
<title>Exit from harness project</title>
</menu>
</submenu>
<contextual action="run gnattest" after="GNATtest">
<title>GNATtest/Generate unit test setup for %p</title>
</contextual>
<contextual action="run gnattest recursive" after="GNATtest">
<title>GNATtest/Generate unit test setup for %p recursive</title>
</contextual>
<contextual action="open harness" after="GNATtest">
<title>GNATtest/Open harness project</title>
</contextual>
<contextual action="exit harness" after="GNATtest">
<title>GNATtest/Exit harness project</title>
</contextual>
<contextual action="make single test" after="GNATtest">
<title>GNATtest/Generate unit test setup for %f</title>
</contextual>
<target-model name="gnattest" category="">
<description>Generic launch of gnattest</description>
<command-line>
<arg>%attr(ide'gnat,gnat)</arg>
<arg>test</arg>
<arg>-dd</arg>
<arg>-P%pp</arg>
<arg>%X</arg>
</command-line>
<icon>gps-build-all</icon>
<switches command="gnattest" columns="2" lines="1">
<title column="1" line="1">Files and directories</title>
<title column="2" line="1">Other switches</title>
<field label="harness directory"
line="1" column="1"
switch="--harness-dir"
separator="="
as-directory="true"
tip="is used to specify the directory in which to place harness packages and project file for the test driver." />
<field label="separate stub root"
line="1" column="1"
switch="--separate-root"
separator="="
as-directory="true"
tip="The directory hierarchy of tested sources is recreated in this directory, and test packages are placed in corresponding directories." />
<field label="stub subdir"
line="1" column="1"
switch="--subdir"
separator="="
as-directory="true"
tip="Test packages are placed in subdirectories" />
<field label="additional tests"
line="1" column="1"
switch="--additional-tests"
separator="="
as-file="true"
tip="Sources described in given project are considered potential additional manual tests to be added to the test suite." />
<combo label="stubs default"
line="2" column="1"
switch="--stub-default"
separator="="
noswitch="fail"
tip="Default behavior of generated stubs.">
<combo-entry label="Fail" value="fail"/>
<combo-entry label="Pass" value="pass"/>
</combo>
<check label="generate harness only"
line="1" column="2"
switch="--harness-only"
tip="Create a harness for all sources, treating them as test packages." />
<check label="Recursive"
line="1" column="2"
switch="-r"
tip="Recursively consider all sources from all projects." />
<check label="Silent"
line="1" column="2"
switch="-q"
tip="Suppresses noncritical output messages." />
<check label="Verbose"
line="1" column="2"
switch="-v"
tip="Verbose mode: generates version information." />
<check label="Liskov verification"
line="1" column="2"
switch="--liskov"
tip="Enables Liskov verification: run all tests from all parents in order to check substitutability." />
</switches>
</target-model>
<!-- This is model for run test-driver executables geberated by GNATtest -->
<target-model name="GNATtest run" category="">
<description>Run a test-driver geberated by GNATtest</description>
<is-run>FALSE</is-run>
<command-line>
<arg>%E</arg>
<arg>--passed-tests=hide</arg>
</command-line>
<server>Execution_Server</server>
<icon>gtk-media-play</icon>
<switches command="%(tool_name)s" columns="1" separator="=">
<combo label="Default test behavior "
switch="--skeleton-default="
tip="How to count unimplemented tests in this run">
<combo-entry label="Pass" value="pass"/>
<combo-entry label="Fail" value="fail"/>
</combo>
<check label="Suppress passed tests output"
switch="--passed-tests=hide"
switch-off="--passed-tests=show"
default="on"
tip="hide passed tests from test river output"/>
</switches>
</target-model>
<target model="gnattest" category="_Project_" name="GNATtest for project">
<in-menu>FALSE</in-menu>
<launch-mode>MANUALLY_WITH_NO_DIALOG</launch-mode>
<read-only>TRUE</read-only>
<command-line>
<arg>%attr(ide'gnat,gnat)</arg>
<arg>test</arg>
<arg>-dd</arg>
<arg>-P%pp</arg>
<arg>%X</arg>
</command-line>
</target>
<target model="gnattest" category="_File_" name="GNATtest for file">
<in-toolbar>FALSE</in-toolbar>
<in-menu>FALSE</in-menu>
<launch-mode>MANUALLY_WITH_NO_DIALOG</launch-mode>
<read-only>TRUE</read-only>
<command-line>
<arg>%attr(ide'gnat,gnat)</arg>
<arg>test</arg>
<arg>-dd</arg>
<arg>-P%pp</arg>
<arg>%X</arg>
<arg>%F</arg>
</command-line>
</target>
<target model="gnattest" category="_Project_"
name="GNATtest for root project">
<in-menu>FALSE</in-menu>
<launch-mode>MANUALLY_WITH_NO_DIALOG</launch-mode>
<read-only>TRUE</read-only>
<command-line>
<arg>%attr(ide'gnat,gnat)</arg>
<arg>test</arg>
<arg>-dd</arg>
<arg>-P%PP</arg>
<arg>%X</arg>
</command-line>
</target>
<target model="GNATtest run" category="Run"
name="Run a test-driver"
messages_category="test-driver">
<visible>FALSE</visible>
<in-menu>TRUE</in-menu>
<in-toolbar>TRUE</in-toolbar>
<in-contextual-menus-for-projects>TRUE</in-contextual-menus-for-projects>
<launch-mode>MANUALLY_WITH_DIALOG</launch-mode>
<target-type>executable</target-type>
<command-line>
<arg>%E</arg>
<arg>--passed-tests=hide</arg>
</command-line>
</target>
</gnattest>
|