aboutsummaryrefslogtreecommitdiff
path: root/src/fs
Commit message (Collapse)AuthorAge
* -d option was removed from gnunet-publish, do not use it in the testChristian Grothoff2019-04-03
|
* Cleanup Python code: remove `import __future__`.Hartmut Goebel2019-03-10
| | | | | All of these only made Python 2 accept some Python 3 language idioms, and the code is Python-3-only.
* make no creation time the defaultChristian Grothoff2019-03-09
|
* fix #5073Christian Grothoff2019-02-20
|
* remove index->insert fallback (#5074)Christian Grothoff2019-02-20
|
* fix build system to actually handle openssl.cnf properlyChristian Grothoff2019-02-20
|
* on shutdown, also stop reset tasksChristian Grothoff2019-02-19
|
* more fs cadet interaction fixesChristian Grothoff2019-02-19
|
* remove duplicate valgrindChristian Grothoff2019-02-19
|
* fix #5586Christian Grothoff2019-02-19
|
* fix #5460Christian Grothoff2019-02-12
|
* util: futurize fs/test_gnunet_fs_psdng02019-02-12
| | | | Signed-off-by: ng0 <ng0@n0.is>
* fix test failure due to bad SPDX lineChristian Grothoff2019-02-10
|
* 2 more spdx identifiersng02019-01-14
|
* src: for every AGPL3.0 file, add SPDX identifier.ng02019-01-14
|
* finish (?) libgnunetatstransport for nowChristian Grothoff2018-11-29
|
* simplify peerstore APIChristian Grothoff2018-11-22
|
* Merge branch 'master' of gnunet.org:gnunetNils Gillmann2018-11-13
|\
| * indentation fixesChristian Grothoff2018-11-06
| |
| * indentation fixesChristian Grothoff2018-11-06
| |
* | Partial application of diff send in beberking, Issue #5476Nils Gillmann2018-11-13
|/ | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* -comments: the world ain't all malepsyc://loupsycedyglgamf.onion/~lynX2018-06-27
|
* tests: use port numbers that are unlikely to collide with user ports (just ↵psyc://loupsycedyglgamf.onion/~lynX1984-04-04
| | | | happened)
* UINT_MAX instead of -1Hernani Marques2018-06-25
|
* fix https://gnunet.org/bugs/view.php?id=4904Schanzenbach, Martin2018-06-24
|
* rename FORCESTART into IMMEDIATE_START (#4547b)psyc://loupsycedyglgamf.onion/~lynX1984-04-04
|
* Merge branch 'master' of ssh://gnunet.org/gnunetxrs2018-06-23
|\
| * AUTOSTART renamed into START_ON_DEMAND (#4547a)psyc://loupsycedyglgamf.onion/~lynX1984-04-04
| |
* | fix fs/test_gnunet_fs_psd.py.in for python3xrs2018-06-23
|/
* really fix #5243 -- it is fun to fix python2+3 for testsuite which will ↵Nils Gillmann2018-06-14
| | | | | | become irrelevant when in the future we only support 2.7 legacy and some range of 3.x Signed-off-by: Nils Gillmann <ng0@n0.is>
* Fix #5243Nils Gillmann2018-06-14
| | | | | | This test has too much boilerplate like the rest and should be fixed by pytest eventually. Signed-off-by: Nils Gillmann <ng0@n0.is>
* paragraph for gnunet devs that don't know how to use the webpsyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* glitch in the license text detected by hyazinthe, thank you!psyc://loupsycedyglgamf.onion/~lynX2018-06-07
|
* second batch complete. WE ARE AFFERO AGPL NOW!psyc://loupsycedyglgamf.onion/~lynX2018-06-06
|
* first batch of license fixes (boring)psyc://loupsycedyglgamf.onion/~lynX2018-06-05
|
* more flakes.Nils Gillmann2018-05-23
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* fix test locationsNils Gillmann2018-05-22
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* text_gnunet_fs_psd.py.in: Fix loading pxpect + flake8'ismNils Gillmann2018-05-22
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* +Nils Gillmann2018-05-19
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* get rid of plain memcpy callsChristian Grothoff2018-05-13
|
* Switch to $GNUNET_TMP in all configuration files.Nils Gillmann2018-05-06
| | | | Signed-off-by: Nils Gillmann <ng0@n0.is>
* eliminate DHT PUT OK message by using MQ feature of calling continuation ↵Christian Grothoff2018-04-30
| | | | when transmission is complete
* src/fs/test_gnunet_fs_psd.py.in: Use py2 and py3.4+ compatible importng02018-03-03
|
* indentation fixesChristian Grothoff2018-01-21
|
* Try to keep the fs->core MQ from growing too largeDavid Barksdale2018-01-10
|
* fix potential use of uninitialized keyChristian Grothoff2018-01-06
|
* fix indentation and use after free in tcp pluginChristian Grothoff2018-01-06
|
* add assertionChristian Grothoff2018-01-04
|
* merge branch 'refactoring-scheduler'lurchi2017-12-30
|\
| * Don't consider restart when the test action already finishedlurchi2017-09-04
| | | | | | | | | | | | | | | | | | | | | | | | In the old scheduler implementation tasks with different priorities were run in the same event loop iteration, in the new implementation this cannot be guaranteed anymore, as it's driver-dependent. For the FS tests this means that when adding both an 'abort' task and a 'restart' task (the latter with higher priority) the 'restart' task didn't take effect with the old implementation but does with the new implementation (and leads to an assertion failure). Not scheduling the 'restart' task when the action (download/publish) has already finished successfully solves this issue.