The enabled check was actually was not being run by the test infrastructure.

Now that it is, we get the following error when trying to execute
`test/compose/select-display-columns`

```sh
./enabled: 2: [: 4: unexpected operator
```

This commit fixes the enabled check
This commit is contained in:
Sidharth Kshatriya 2021-12-14 16:49:39 +05:30
parent 4d3a057a03
commit e013385a58

View File

@ -1,2 +1,2 @@
#!/bin/sh #!/bin/sh
[ $(echo -n "😄😊😉😍" | wc -m) == 4 ] && locale | grep LC_CTYPE | grep -qi 'utf-*8' [ $(echo -n "😄😊😉😍" | wc -m) = '4' ] && locale | grep LC_CTYPE | grep -qi 'utf-*8'