xp-framework / core

The XP Framework is an all-purpose, object oriented PHP framework.
Other
19 stars 6 forks source link

Failed tests on Ubuntu 20.04 #260

Closed thekid closed 3 years ago

thekid commented 3 years ago

expected ["/bin/ls"] but was ["/usr/bin/ls"] - see https://github.com/xp-framework/core/pull/259/checks?check_run_id=2046458228

Recently some Linux distributions are merging /bin into /usr/bin and relatedly /lib into /usr/lib. Sometimes also (/usr)/sbin to /usr/bin (Arch Linux). So /usr is expected to be available at the same time as /.

The distinction between the two hierarchies is taken to be unnecessary complexity now. The idea was once having only /bin available at boot, but having an initial ramdisk makes this obsolete.

https://unix.stackexchange.com/a/60135