summaryrefslogtreecommitdiffstats
path: root/meta-agl-core/recipes-kernel/linux
diff options
context:
space:
mode:
authorArnaud Ferraris <arnaud.ferraris@collabora.com>2021-12-17 10:43:20 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2021-12-17 21:15:26 +0000
commit6f7d929c10b318fab8484b2b7a52fc047c7922fc (patch)
treeb93a9a02bc2d359a9234c3549251f4063364a659 /meta-agl-core/recipes-kernel/linux
parentcdde5386d6b947710819d4b21462746646b88bc5 (diff)
meta-app-framework: recipes-core: add applaunchd recipe
Bug-AGL: SPEC-4160 Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com> Change-Id: I7b2d5e660625091d665727d48a45eb1b7958904e Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/27015 Tested-by: Jenkins Job builder account ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-agl-core/recipes-kernel/linux')
0 files changed, 0 insertions, 0 deletions
008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# XDS Server Test

## XDS Server test architecture

The test part is written in go and source code is available in test directory.

```bash
|
+-- test/                # where xds-server test source files
|
+-- test/main_test.go    # main entry point of xds-server test
|
+-- test/fixtures        # fixtures for running test
```

The test execution will locally launch xds-server and access the api through REST and test results, events, ...

## Dependencies

* sshd

Make sure sshd is in your user PATH.

## Launch test

Use the following command to launch test in xds-server root directory:

```bash
make test
```

Launch only one test, for example launch TestSdks:

```bash
make test name=TestSdks
```

Increase test verbosity:

```bash
make test VERBOSE=1
```