summaryrefslogtreecommitdiffstats
path: root/nixos/tests/avahi.nix
AgeCommit message (Collapse)Author
2020-10-20nixos/tests/avahi: Fix evaluationaszlig
In commit a61ca0373b63225e3aa00556c8fc1fb36abcbe3e (#100267), the avahi test expression got an additional attribute, but instead of wrapping the function, the attributes were introduced by nesting the function one level deeper. To illustrate this: Before: attrs: <testdrv> After: newattrs: attrs: <testdrv> So when instantiating tests.avahi.x86_64-linux from nixos/release.nix we get "value is a function while a set was expected" instead of the derivation. I simply re-passed the attributes to make-test-python.nix, since the function already allows (via "...") arbitrary attributes to be passed. The reason why I'm pushing this directly to master is because evaluation for the test is already broken and the worst that could happen here is that things are *still* broken. Signed-off-by: aszlig <aszlig@nix.build> Cc: @flokli, @doronbehar
2020-10-11nixosTests.avahi: add avahi-with-resolvedFlorian Klink
This allows testing avahi works with resolved being enabled, as a regression test for https://github.com/NixOS/nixpkgs/pull/99530.
2019-11-06nixos/avahi: port test to pythonMarijan
2019-06-04nixos/tests/avahi: add test for extra service definitionsWilliButz
2019-02-22Remove myself as maintainer from packagesFlorian Friesdorf
I'm currently not maintaining any packages.
2018-07-20[bot] nixos/*: remove unused arguments in lambdasvolth
2016-02-28avahi: fix testJoel Moberg
Reflects module changes made by cdd7310a503481e3c40266be45b6b8256d95ecbd
2015-08-04nixos.tests.avahi: unmaintainRicardo M. Correia
2015-07-12all tests: added meta.maintainers sectionJoachim Schiele
2014-06-28name nixos tests, close #3078Florian Friesdorf
2014-04-21nixos/tests/avahi: Fix race condition on mDNS testRicardo M. Correia
2014-04-14Make it easier to run the testsEelco Dolstra
You can now run a test in the nixos/tests directory directly using nix-build, e.g. $ nix-build '<nixos/tests/login.nix>' -A test This gets rid of having to add the test to nixos/tests/default.nix. (Of course, you still need to add it to nixos/release.nix if you want Hydra to run the test.)
2013-10-10Move all of NixOS to nixos/ in preparation of the repository mergeEelco Dolstra