about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 3474Kartik K. Agaram2016-10-071-20/+27
| | | | Don't print anything during build if there's nothing being built.
* 3473Kartik K. Agaram2016-10-071-2/+2
|
* 3472Kartik K. Agaram2016-10-071-2/+2
|
* 3471Kartik K. Agaram2016-10-071-10/+17
|
* 3470Kartik K. Agaram2016-10-071-3/+4
|
* 3469Kartik K. Agaram2016-10-071-5/+5
|
* 3468Kartik K. Agaram2016-10-071-1/+1
| | | | Don't run Mu if the compile fails.
* 3467Kartik K. Agaram2016-10-071-19/+18
|
* 3466Kartik K. Agaram2016-10-071-13/+14
|
* 3465Kartik K. Agaram2016-10-071-5/+8
| | | | Fix a few names in comments.
* 3464Kartik K. Agaram2016-10-071-2/+1
|
* 3463Kartik K. Agaram2016-10-071-5/+4
|
* 3462Kartik K. Agaram2016-10-074-5/+11
| | | | Better examples in the Readme: keyboard, mouse and filesystem tests.
* 3461Kartik K. Agaram2016-10-071-8/+9
|
* 3460Kartik K. Agaram2016-10-071-0/+1
|
* 3459Kartik K. Agaram2016-10-071-2/+2
|
* 3458Stephen Malina2016-10-072-2/+118
| | | | Testable network interface and write flow.
* 3457Kartik K. Agaram2016-10-0633-1766/+1766
| | | | | Switch around some unicode characters in the edit/ app so that it renders more cleanly in html (with monospace fonts).
* 3456Kartik K. Agaram2016-10-0619-568/+601
|
* 3455Kartik K. Agaram2016-10-063-3/+3
|
* 3454Kartik K. Agaram2016-10-061-1/+1
| | | | Yet another fix for CI.
* 3453Kartik K. Agaram2016-10-061-0/+4
|
* 3452Kartik K. Agaram2016-10-061-21/+23
| | | | | | | | Fix the sense of a shell function. Somehow in all these years I hadn't realized that 0 is true and non-zero is false for purposes of *nix shells' `&&` and `||` operators. Suddenly Urbit doesn't seem so far out..
* 3451Kartik K. Agaram2016-10-061-1/+1
| | | | Fix CI.
* 3450Kartik K. Agaram2016-10-067-75/+9
| | | | Purge remaining `makefile`s, without breaking CI.
* 3449Kartik K. Agaram2016-10-061-1/+2
| | | | Fix CI. Didn't mean to push just yet :/
* 3448Kartik K. Agaram2016-10-063-8/+8
| | | | Drop perl dependency everywhere.
* 3447 - drop dependence on GNU makeKartik K. Agaram2016-10-066-102/+129
| | | | | | | | | A generic build system is overkill for such a small project, and it was adding complexity on OpenBSD which doesn't come with GNU make by default. In the process we also eliminate our reliance on bash and perl, at least for the core build script.
* 3446Kartik K. Agaram2016-10-061-1/+3
| | | | | | | | | | Better warning if I try: mu test --test-only-app sandbox instead of: mu --test-only-app test sandbox
* 3445Kartik K. Agaram2016-10-0624-916/+933
| | | | | | | Ugly that we didn't need 'screen' to provide a type in scenarios (because assume-screen expands to a definition of 'screen') but we did need a type for 'console'. Just never require types for special names in scenarios.
* 3444Kartik K. Agaram2016-10-061-3/+13
| | | | Fix CI. Turns out strlcpy and strlcat are not implemented on Linux.
* 3443Kartik K. Agaram2016-10-051-5/+5
| | | | Fix some OpenBSD warnings.
* 3442Kartik K. Agaram2016-10-053-12/+16
| | | | | | | | Support for a minimal OpenBSD without bash. Many of the scripts in the repo won't work in that situation, but let's at least make the `mu` script work. I'd like to come up with a clean makefile that doesn't require GNU make.
* 3441Kartik K. Agaram2016-10-041-7/+7
|
* 3440Kartik K. Agaram2016-10-041-24/+24
|
* 3439Kartik K. Agaram2016-10-041-1/+16
|
* 3438Kartik K. Agaram2016-10-041-16/+3
|
* 3437Kartik K. Agaram2016-10-042-1/+1
| | | | | | | | Drop an ancient case of premature optimization: skipping transform for recipes without bodies. These days recipes also have headers that need transforming. Thanks Caleb Couch for running into this issue.
* 3436Kartik K. Agaram2016-10-041-2/+5
|
* 3435Kartik K. Agaram2016-10-043-0/+9
|
* 3434Kartik K. Agaram2016-10-041-2/+2
|
* 3433Kartik K. Agaram2016-10-014-4/+4
|
* 3432Kartik K. Agaram2016-09-302-4/+4
|
* 3431Kartik K. Agaram2016-09-30102-1569/+1644
| | | | | Improvements to syntax highlighting, particularly for Mu code in C++ files.
* 3430Kartik K. Agaram2016-09-2828-1561/+1636
|
* 3429 - standardize Mu scenariosKartik K. Agaram2016-09-2833-2226/+2359
| | | | | | | | | | | | | A long-standing problem has been that I couldn't spread code across 'run' blocks because they were separate scopes, so I've ended up making them effectively comments. Running code inside a 'run' block is identical in every way to simply running the code directly. The 'run' block is merely a visual aid to separate setup from the component under test. In the process I've also standardized all Mu scenarios to always run in a local scope, and only use (raw) numeric addresses for values they want to check later.
* 3428Kartik K. Agaram2016-09-282-4/+4
|
* 3427Kartik K. Agaram2016-09-271-2/+5
|
* 3426Kartik K. Agaram2016-09-271-1/+2
|
* 3425 - support for disabling some scenariosKartik K. Agaram2016-09-271-0/+4
|