Github messages for voidlinux
 help / color / mirror / Atom feed
From: yopito <yopito@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: nextcloud-client: update to 3.1.0
Date: Tue, 15 Dec 2020 14:27:26 +0100	[thread overview]
Message-ID: <20201215132726.EjZWd0A-Wlty_n4lT3S7JsxbfA7qikThz04ePX88rvs@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-27168@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 930 bytes --]

New comment by yopito on void-packages repository

https://github.com/void-linux/void-packages/pull/27168#issuecomment-745286184

Comment:
fail again. code of test 32:
```
113 static void check_csync_vio_opendir_perm(void **state)
114 {   
115     auto *csync = (CSYNC*)*state;
116     csync_vio_handle_t *dh = nullptr;
117     int rc = 0;
118     mbchar_t *dir = c_utf8_path_to_locale(CSYNC_TEST_DIR);
119     
120     assert_non_null(dir);
121     
122     rc = _tmkdir(dir, (S_IWUSR|S_IXUSR));   /* macro: => mkdir(dir, (S_IWUSR|S_IXUSR)) */
123     assert_int_equal(rc, 0);
124 
125     dh = csync_vio_opendir(csync, CSYNC_TEST_DIR);
126     assert_null(dh);
127     assert_int_equal(errno, EACCES);
128 
129     _tchmod(dir, MKDIR_MASK);
130     c_free_locale_string(dir);
131 }
```
The default umask is probably kind of special in GH actions's container, that would explain this (unrelevant) error ?


  parent reply	other threads:[~2020-12-15 13:27 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-15  0:20 [PR PATCH] " yopito
2020-12-15 12:51 ` yopito
2020-12-15 12:51 ` [PR PATCH] [Updated] " yopito
2020-12-15 12:52 ` yopito
2020-12-15 13:27 ` yopito [this message]
2020-12-15 13:33 ` ericonr
2020-12-17 18:20 ` [PR PATCH] [Closed]: " ericonr
2020-12-17 18:21 ` ericonr
2020-12-17 20:52 ` yopito

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201215132726.EjZWd0A-Wlty_n4lT3S7JsxbfA7qikThz04ePX88rvs@z \
    --to=yopito@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).